Repository URL to install this package:
|
Version:
0.19.0 ▾
|
require "rails/generators/base"
require "administrate/generator_helpers"
require "administrate/namespace"
module Administrate
class ViewGenerator < Rails::Generators::Base
include Administrate::GeneratorHelpers
class_option(
:namespace,
type: :string,
desc: "Namespace where the admin dashboards live",
default: "admin",
)
def self.template_source_path
File.expand_path(
"../../../app/views/administrate/application",
__FILE__,
)
end
private
def namespace
options[:namespace]
end
def copy_resource_template(template_name)
template_file = "#{template_name}.html.erb"
copy_file(
template_file,
"app/views/#{namespace}/#{resource_path}/#{template_file}",
)
end
def resource_path
args.first.try(:underscore).try(:pluralize) || BaseResourcePath.new
end
class BaseResourcePath
def to_s
"application"
end
end
end
end