Class: SpreeBcash::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- SpreeBcash::Generators::InstallGenerator
- Defined in:
- lib/generators/spree_bcash/install/install_generator.rb
Instance Method Summary collapse
Instance Method Details
#add_migrations ⇒ Object
5 6 7 |
# File 'lib/generators/spree_bcash/install/install_generator.rb', line 5 def add_migrations run 'bundle exec rake railties:install:migrations FROM=spree_bcash' end |
#run_migrations ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/generators/spree_bcash/install/install_generator.rb', line 9 def run_migrations question = ask "Would you like to run the migrations now? [Y/n]" if question == "" || question.downcase == "y" run 'bundle exec rake db:migrate' else puts "Skiping rake db:migrate, don't forget to run it!" end end |