class SpreeMatkahuolto::Generators::InstallGenerator

Public Instance Methods

add_migrations() click to toggle source
# File lib/generators/spree_matkahuolto/install/install_generator.rb, line 4
def add_migrations
  run 'bundle exec rake railties:install:migrations FROM=spree_matkahuolto'
end
run_migrations() click to toggle source
# File lib/generators/spree_matkahuolto/install/install_generator.rb, line 8
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