Class: SolidusOxxoPay::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- SolidusOxxoPay::Generators::InstallGenerator
- Defined in:
- lib/generators/solidus_oxxo_pay/install/install_generator.rb
Instance Method Summary collapse
- #add_javascripts ⇒ Object
- #add_migrations ⇒ Object
- #add_stylesheets ⇒ Object
- #run_migrations ⇒ Object
Instance Method Details
#add_javascripts ⇒ Object
8 9 10 11 |
# File 'lib/generators/solidus_oxxo_pay/install/install_generator.rb', line 8 def add_javascripts append_file 'vendor/assets/javascripts/spree/frontend/all.js', "//= require spree/frontend/solidus_oxxo_pay\n" append_file 'vendor/assets/javascripts/spree/backend/all.js', "//= require spree/backend/solidus_oxxo_pay\n" end |
#add_migrations ⇒ Object
18 19 20 |
# File 'lib/generators/solidus_oxxo_pay/install/install_generator.rb', line 18 def add_migrations run 'bundle exec rake railties:install:migrations FROM=solidus_oxxo_pay' end |
#add_stylesheets ⇒ Object
13 14 15 16 |
# File 'lib/generators/solidus_oxxo_pay/install/install_generator.rb', line 13 def add_stylesheets inject_into_file 'vendor/assets/stylesheets/spree/frontend/all.css', " *= require spree/frontend/solidus_oxxo_pay\n", before: /\*\//, verbose: true inject_into_file 'vendor/assets/stylesheets/spree/backend/all.css', " *= require spree/backend/solidus_oxxo_pay\n", before: /\*\//, verbose: true end |
#run_migrations ⇒ Object
22 23 24 25 26 27 28 29 |
# File 'lib/generators/solidus_oxxo_pay/install/install_generator.rb', line 22 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 rake db:migrate' else puts 'Skipping rake db:migrate, don\'t forget to run it!' end end |