Class: SpreeZoned::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- SpreeZoned::Generators::InstallGenerator
- Defined in:
- lib/generators/spree_zoned/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
7 8 9 10 11 12 13 |
# File 'lib/generators/spree_zoned/install/install_generator.rb', line 7 def add_javascripts res = ask "Would you like to append spree_zoned to your js manifests now?\n(only answer no if you you've already done it) [Y/n]" if res == '' || res.downcase == 'y' append_file 'app/assets/javascripts/store/all.js', "//= require store/spree_zoned\n" append_file 'app/assets/javascripts/admin/all.js', "//= require admin/spree_zoned\n" end end |
#add_migrations ⇒ Object
23 24 25 |
# File 'lib/generators/spree_zoned/install/install_generator.rb', line 23 def add_migrations run 'bundle exec rake railties:install:migrations FROM=spree_zoned' end |
#add_stylesheets ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/generators/spree_zoned/install/install_generator.rb', line 15 def add_stylesheets res = ask "Would you like to inject spree_zoned into your css manifests now?\n(only answer no if you you've already done it) [Y/n]" if res == '' || res.downcase == 'y' inject_into_file 'app/assets/stylesheets/store/all.css', " *= require store/spree_zoned\n", :before => /\*\//, :verbose => true inject_into_file 'app/assets/stylesheets/admin/all.css', " *= require admin/spree_zoned\n", :before => /\*\//, :verbose => true end end |
#run_migrations ⇒ Object
27 28 29 30 31 32 33 34 |
# File 'lib/generators/spree_zoned/install/install_generator.rb', line 27 def run_migrations res = ask 'Would you like to run the migrations now? [Y/n]' if res == '' || res.downcase == 'y' run 'bundle exec rake db:migrate' else puts 'Skipping rake db:migrate, don\'t forget to run it!' end end |