Sha256: 34d8db60a6e8b1c2a91a386534a6d57ddf0d94d11b312d5ad712612ce8a393f4
Contents?: true
Size: 1.41 KB
Versions: 4
Compression:
Stored size: 1.41 KB
Contents
# encoding: UTF-8 require 'rails/generators/migration' require 'rails/generators/active_record' module Georgia module Generators class InstallGenerator < ::Rails::Generators::Base include Rails::Generators::Migration source_root File.expand_path('../templates', __FILE__) desc "Installs Georgia CMS:\n * Mounts routes\n * Copies initializer\n * Loads Migration\n * Runs Migration\n * Creates initial instances" def mount_engine # Must be in reverse order to keep priorities route "get '*request_path', to: 'pages#show', as: :page" route "root to: 'pages#show', request_path: 'home'" route "resources :messages, only: [:create]" route "mount Ckeditor::Engine => '/ckeditor'" route "mount Georgia::Engine => '/admin'" end def self.next_migration_number(number) ActiveRecord::Generators::Base.next_migration_number(number) end def run_migrations rake "railties:install:migrations" rake "db:migrate" end def create_admin_user say("You're almost done. You need an admin user to get started.", :yellow) rake "georgia:seed" end def copy_templates template "config/initializers/georgia.rb" template "app/controllers/pages_controller.rb" end def show_readme readme "README" end end end end
Version data entries
4 entries across 4 versions & 1 rubygems