Class: SolidusTaxonGroup::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- SolidusTaxonGroup::Generators::InstallGenerator
- Defined in:
- lib/generators/solidus_taxon_group/install/install_generator.rb
Instance Method Summary collapse
Instance Method Details
#add_migrations ⇒ Object
6 7 8 |
# File 'lib/generators/solidus_taxon_group/install/install_generator.rb', line 6 def add_migrations run 'bundle exec rake railties:install:migrations FROM=solidus_taxon_group' end |
#run_migrations ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/generators/solidus_taxon_group/install/install_generator.rb', line 10 def run_migrations if running_migrations? run 'bundle exec rake db:migrate' else puts "Skiping rake db:migrate, don't forget to run it!" end end |