Sha256: 7ce99c29fbc4b342fe54575a998d36131963a148982caa92f1cadbb48992248b
Contents?: true
Size: 1.32 KB
Versions: 3
Compression:
Stored size: 1.32 KB
Contents
module ActiveAdmin module Generators class InstallGenerator < Rails::Generators::NamedBase desc "Installs Active Admin and generats the necessary migrations" argument :name, :type => :string, :default => "AdminUser" hook_for :users, :default => "devise", :desc => "Admin user generator to run. Skip with --skip-users" include Rails::Generators::Migration def self.source_root @_active_admin_source_root ||= File.expand_path("../templates", __FILE__) end def self.next_migration_number(dirname) Time.now.strftime("%Y%m%d%H%M%S") end def copy_initializer @underscored_user_name = name.underscore template 'active_admin.rb.erb', 'config/initializers/active_admin.rb' end def setup_directory empty_directory "app/admin" template 'dashboards.rb', 'app/admin/dashboards.rb' end def setup_routes route "ActiveAdmin.routes(self)" end def create_assets generate "active_admin:assets" end def create_migrations Dir["#{self.class.source_root}/migrations/*.rb"].sort.each do |filepath| name = File.basename(filepath) migration_template "migrations/#{name}", "db/migrate/#{name.gsub(/^\d+_/,'')}" sleep 1 end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems