class SpreeGtpay::Generators::InstallGenerator
Public Instance Methods
add_javascripts()
click to toggle source
# File lib/generators/spree_gtpay/install/install_generator.rb, line 7 def add_javascripts append_file 'app/assets/javascripts/store/all.js', "//= require store/spree_gtpay\n" append_file 'app/assets/javascripts/admin/all.js', "//= require admin/spree_gtpay\n" end
add_migrations()
click to toggle source
# File lib/generators/spree_gtpay/install/install_generator.rb, line 17 def add_migrations run 'bundle exec rake railties:install:migrations FROM=spree_gtpay' end
add_stylesheets()
click to toggle source
# File lib/generators/spree_gtpay/install/install_generator.rb, line 12 def add_stylesheets inject_into_file 'app/assets/stylesheets/store/all.css', " *= require store/spree_gtpay\n", :before => /\*\//, :verbose => true inject_into_file 'app/assets/stylesheets/admin/all.css', " *= require admin/spree_gtpay\n", :before => /\*\//, :verbose => true end
run_migrations()
click to toggle source
# File lib/generators/spree_gtpay/install/install_generator.rb, line 21 def run_migrations run_migrations = options[: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