Class: SpreeVpago::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- SpreeVpago::Generators::InstallGenerator
- Defined in:
- lib/generators/spree_vpago/install/install_generator.rb
Instance Method Summary collapse
Instance Method Details
#acleda_logo_template ⇒ Object
12 13 14 |
# File 'lib/generators/spree_vpago/install/install_generator.rb', line 12 def acleda_logo_template template 'app/assets/images/vpago/payway/acleda_merchant_logo_300x300.png' end |
#add_migrations ⇒ Object
7 8 9 10 |
# File 'lib/generators/spree_vpago/install/install_generator.rb', line 7 def add_migrations run 'bundle exec rake railties:install:migrations FROM=spree_multi_vendor' run 'bundle exec rake railties:install:migrations FROM=spree_vpago' end |
#run_migrations ⇒ Object
16 17 18 19 20 21 22 23 |
# File 'lib/generators/spree_vpago/install/install_generator.rb', line 16 def run_migrations run_migrations = [:auto_run_migrations] || ['', 'y', 'Y'].include?(ask('Would you like to run the migrations now? [Y/n]')) if run_migrations run 'bundle exec rails db:migrate' else puts 'Skipping rails db:migrate, don\'t forget to run it!' end end |