Class: SpreeSuppliers::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- SpreeSuppliers::Generators::InstallGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/spree_suppliers/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 |
# File 'lib/generators/spree_suppliers/install/install_generator.rb', line 7 def add_javascripts append_file "app/assets/javascripts/store/all.js", "//= require store/spree_suppliers\n" append_file "app/assets/javascripts/admin/all.js", "//= require admin/spree_suppliers\n" end |
#add_migrations ⇒ Object
17 18 19 |
# File 'lib/generators/spree_suppliers/install/install_generator.rb', line 17 def add_migrations run 'bundle exec rake railties:install:migrations FROM=spree_suppliers' end |
#add_stylesheets ⇒ Object
12 13 14 15 |
# File 'lib/generators/spree_suppliers/install/install_generator.rb', line 12 def add_stylesheets inject_into_file "app/assets/stylesheets/store/all.css", " *= require store/spree_suppliers\n", :before => /\*\//, :verbose => true inject_into_file "app/assets/stylesheets/admin/all.css", " *= require admin/spree_suppliers\n", :before => /\*\//, :verbose => true end |
#run_migrations ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'lib/generators/spree_suppliers/install/install_generator.rb', line 21 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 "Skiping rake db:migrate, don't forget to run it!" end end |