Class: SolidusWebhooks::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- SolidusWebhooks::Generators::InstallGenerator
- Defined in:
- lib/generators/solidus_webhooks/install/install_generator.rb
Instance Method Summary collapse
- #add_javascripts ⇒ Object
- #add_migrations ⇒ Object
- #add_stylesheets ⇒ Object
- #copy_initializer ⇒ Object
- #run_migrations ⇒ Object
Instance Method Details
#add_javascripts ⇒ Object
13 14 15 16 |
# File 'lib/generators/solidus_webhooks/install/install_generator.rb', line 13 def add_javascripts append_file 'vendor/assets/javascripts/spree/frontend/all.js', "//= require spree/frontend/solidus_webhooks\n" append_file 'vendor/assets/javascripts/spree/backend/all.js', "//= require spree/backend/solidus_webhooks\n" end |
#add_migrations ⇒ Object
23 24 25 |
# File 'lib/generators/solidus_webhooks/install/install_generator.rb', line 23 def add_migrations run 'bin/rails railties:install:migrations FROM=solidus_webhooks' end |
#add_stylesheets ⇒ Object
18 19 20 21 |
# File 'lib/generators/solidus_webhooks/install/install_generator.rb', line 18 def add_stylesheets inject_into_file 'vendor/assets/stylesheets/spree/frontend/all.css', " *= require spree/frontend/solidus_webhooks\n", before: %r{\*/}, verbose: true # rubocop:disable Layout/LineLength inject_into_file 'vendor/assets/stylesheets/spree/backend/all.css', " *= require spree/backend/solidus_webhooks\n", before: %r{\*/}, verbose: true # rubocop:disable Layout/LineLength end |
#copy_initializer ⇒ Object
9 10 11 |
# File 'lib/generators/solidus_webhooks/install/install_generator.rb', line 9 def copy_initializer template 'initializer.rb', 'config/initializers/solidus_webhooks.rb' end |
#run_migrations ⇒ Object
27 28 29 30 31 32 33 34 |
# File 'lib/generators/solidus_webhooks/install/install_generator.rb', line 27 def run_migrations run_migrations = [:auto_run_migrations] || ['', 'y', 'Y'].include?(ask('Would you like to run the migrations now? [Y/n]')) # rubocop:disable Layout/LineLength if run_migrations run 'bin/rails db:migrate' else puts 'Skipping bin/rails db:migrate, don\'t forget to run it!' # rubocop:disable Rails/Output end end |