Class: Comable::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/comable/install/install_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.source_pathsObject



13
14
15
16
17
# File 'lib/generators/comable/install/install_generator.rb', line 13

def source_paths
  paths = superclass.source_paths
  paths << File.expand_path('../templates', __FILE__)
  paths.flatten
end

Instance Method Details

#add_filesObject



25
26
27
# File 'lib/generators/comable/install/install_generator.rb', line 25

def add_files
  template 'config/initializers/comable.rb', 'config/initializers/comable.rb'
end

#append_seedsObject



41
42
43
44
45
46
# File 'lib/generators/comable/install/install_generator.rb', line 41

def append_seeds
  append_file 'db/seeds.rb', "# Seed data for Comable\nComable::Core::Engine.load_seed if defined?(Comable::Core)\n  SEEDS\nend\n"

#completeObject



91
92
93
# File 'lib/generators/comable/install/install_generator.rb', line 91

def complete
  message_for_complete unless options[:quiet]
end

#configure_applicationObject



29
30
31
32
33
34
35
36
37
38
39
# File 'lib/generators/comable/install/install_generator.rb', line 29

def configure_application
  application "config.to_prepare do\n  # Overriding Models and Controllers\n  # refs: http://edgeguides.rubyonrails.org/engines.html#overriding-models-and-controllers\n  Dir.glob(Rails.root.join('app/**/*_decorator*.rb')).each do |c|\n    Rails.configuration.cache_classes ? require_dependency(c) : load(c)\n  end\nend\n  APP\nend\n"

#create_databaseObject



53
54
55
56
# File 'lib/generators/comable/install/install_generator.rb', line 53

def create_database
  say_status :creating, 'database'
  quietly { rake 'db:create' }
end

#insert_routesObject



76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/generators/comable/install/install_generator.rb', line 76

def insert_routes
  insert_into_file File.join('config', 'routes.rb'), after: "Rails.application.routes.draw do\n" do
    "  # This line mounts Comable's routes at the root of your application.\n  # This means, any requests to URLs such as /products, will go to Comable::ProductsController.\n  # If you would like to change where this engine is mounted, simply change the :at option to something different.\n  #\n  # We ask that you don't use the :as option here, as Comable relies on it being the default of \"comable\"\n  mount Comable::Core::Engine, at: '/'\n    ROUTES\n  end\n\n  message_for_insert_routes unless options[:quiet]\nend\n"

#install_migrationsObject



48
49
50
51
# File 'lib/generators/comable/install/install_generator.rb', line 48

def install_migrations
  say_status :copying, 'migrations'
  quietly { rake 'comable:install:migrations' }
end

#load_seed_dataObject



67
68
69
70
71
72
73
74
# File 'lib/generators/comable/install/install_generator.rb', line 67

def load_seed_data
  if @seed_flag
    say_status :loading, 'seed data'
    rake_seed
  else
    say_status :skipping, 'seed data (you can always run rake db:seed)'
  end
end

#prepare_optionsObject



20
21
22
23
# File 'lib/generators/comable/install/install_generator.rb', line 20

def prepare_options
  @migrate_flag = options[:migrate]
  @seed_flag = @migrate_flag ? options[:seed] : false
end

#run_migrationsObject



58
59
60
61
62
63
64
65
# File 'lib/generators/comable/install/install_generator.rb', line 58

def run_migrations
  if @migrate_flag
    say_status :running, 'migrations'
    quietly { rake 'db:migrate' }
  else
    say_status :skipping, "migrations (don't forget to run rake db:migrate)"
  end
end