Class: SpreePaypalExpress::Generators::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/spree_paypal_express/install/install_generator.rb

Instance Method Summary collapse

Instance Method Details

#add_migrationsObject



4
5
6
# File 'lib/generators/spree_paypal_express/install/install_generator.rb', line 4

def add_migrations
  run 'rake railties:install:migrations FROM=spree_paypal_express'
end

#run_migrationsObject



8
9
10
11
12
13
14
15
# File 'lib/generators/spree_paypal_express/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 'rake db:migrate'
   else
     puts "Skiping rake db:migrate, don't forget to run it!"
   end
end