class SpreeGroupBuy::Generators::InstallGenerator
Public Instance Methods
add_migrations()
click to toggle source
# File lib/generators/spree_group_buy/install/install_generator.rb, line 12 def add_migrations run 'bundle exec rake railties:install:migrations FROM=spree_group_buy' end
copy_javascripts()
click to toggle source
# File lib/generators/spree_group_buy/install/install_generator.rb, line 8 def copy_javascripts directory 'vendor' end
run_migrations()
click to toggle source
# File lib/generators/spree_group_buy/install/install_generator.rb, line 16 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 rails db:migrate' else puts 'Skipping rails db:migrate, don\'t forget to run it!' end end