Class: MercuryEngine::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- MercuryEngine::Generators::InstallGenerator
- Defined in:
- lib/generators/mercury_engine/install_generator.rb
Instance Method Summary collapse
Instance Method Details
#add_migrations ⇒ Object
8 9 10 |
# File 'lib/generators/mercury_engine/install_generator.rb', line 8 def add_migrations run 'bundle exec rake railties:install:migrations FROM=mercury_engine' end |
#add_route ⇒ Object
4 5 6 |
# File 'lib/generators/mercury_engine/install_generator.rb', line 4 def add_route route "mount MercuryEngine::Engine => '/'" end |
#run_migrations ⇒ Object
12 13 14 15 16 17 18 19 20 |
# File 'lib/generators/mercury_engine/install_generator.rb', line 12 def run_migrations response = ask "Would you like to run the migrations now? [Y/n]" if response == "" || response.downcase == "y" run 'bundle exec rake db:migrate' else say "Skipping rake db:migrate, don't forget to run it!", :yellow end end |