Class: SpreePurchaseOrder::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- SpreePurchaseOrder::Generators::InstallGenerator
- Defined in:
- lib/generators/spree_purchase_order/install/install_generator.rb
Instance Method Summary collapse
- #add_javascripts ⇒ Object
- #add_migrations ⇒ Object
- #add_source_attributes ⇒ Object
- #add_stylesheets ⇒ Object
- #run_migrations ⇒ Object
Instance Method Details
#add_javascripts ⇒ Object
5 6 7 8 |
# File 'lib/generators/spree_purchase_order/install/install_generator.rb', line 5 def add_javascripts append_file 'vendor/assets/javascripts/spree/frontend/all.js', "//= require spree/frontend/spree_purchase_order\n" append_file 'vendor/assets/javascripts/spree/backend/all.js', "//= require spree/backend/spree_purchase_order\n" end |
#add_migrations ⇒ Object
19 20 21 |
# File 'lib/generators/spree_purchase_order/install/install_generator.rb', line 19 def add_migrations run 'bundle exec rake railties:install:migrations FROM=spree_purchase_order' end |
#add_source_attributes ⇒ Object
15 16 17 |
# File 'lib/generators/spree_purchase_order/install/install_generator.rb', line 15 def add_source_attributes append_file 'config/initializers/spree.rb', "Spree::PermittedAttributes.source_attributes.push :po_number, :organization_name" end |
#add_stylesheets ⇒ Object
10 11 12 13 |
# File 'lib/generators/spree_purchase_order/install/install_generator.rb', line 10 def add_stylesheets inject_into_file 'vendor/assets/stylesheets/spree/frontend/all.css', " *= require spree/frontend/spree_purchase_order\n", before: /\*\//, verbose: true inject_into_file 'vendor/assets/stylesheets/spree/backend/all.css', " *= require spree/backend/spree_purchase_order\n", before: /\*\//, verbose: true end |
#run_migrations ⇒ Object
23 24 25 26 27 28 29 30 |
# File 'lib/generators/spree_purchase_order/install/install_generator.rb', line 23 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 |