Class: SolidusStaticContent::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- SolidusStaticContent::Generators::InstallGenerator
- Defined in:
- lib/generators/solidus_static_content/install/install_generator.rb
Instance Method Summary collapse
Instance Method Details
#add_migrations ⇒ Object
10 11 12 |
# File 'lib/generators/solidus_static_content/install/install_generator.rb', line 10 def add_migrations run 'bundle exec rake railties:install:migrations FROM=solidus_static_content' end |
#add_stylesheets ⇒ Object
6 7 8 |
# File 'lib/generators/solidus_static_content/install/install_generator.rb', line 6 def add_stylesheets inject_into_file 'vendor/assets/stylesheets/spree/frontend/all.css', " *= require spree/frontend/spree_static_content\n", before: /\*\//, verbose: true end |
#run_migrations ⇒ Object
14 15 16 17 18 19 20 21 |
# File 'lib/generators/solidus_static_content/install/install_generator.rb', line 14 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 |