Class: SolidusPrototypes::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- SolidusPrototypes::Generators::InstallGenerator
- Defined in:
- lib/generators/solidus_prototypes/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
10 11 12 13 14 15 |
# File 'lib/generators/solidus_prototypes/install/install_generator.rb', line 10 def add_javascripts append_file( 'vendor/assets/javascripts/spree/backend/all.js', "//= require spree/backend/solidus_prototypes\n" ) end |
#add_migrations ⇒ Object
26 27 28 |
# File 'lib/generators/solidus_prototypes/install/install_generator.rb', line 26 def add_migrations run 'bundle exec rake railties:install:migrations FROM=solidus_prototypes' end |
#add_stylesheets ⇒ Object
17 18 19 20 21 22 23 24 |
# File 'lib/generators/solidus_prototypes/install/install_generator.rb', line 17 def add_stylesheets inject_into_file( 'vendor/assets/stylesheets/spree/backend/all.css', " *= require spree/backend/solidus_prototypes\n", before: %r{\*/}, verbose: true ) end |
#run_migrations ⇒ Object
30 31 32 33 34 35 36 37 38 39 |
# File 'lib/generators/solidus_prototypes/install/install_generator.rb', line 30 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!' # rubocop:disable Rails/Output end end |