class SpreeThemeGenerator::Generators::InstallGenerator

Public Instance Methods

run_migrations() click to toggle source
# File lib/generators/spree_theme_generator/install/install_generator.rb, line 7
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