Class: SpreeSalePrices::Generators::InstallGenerator

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

Instance Method Summary collapse

Instance Method Details

#add_migrationsObject



5
6
7
# File 'lib/generators/spree_sale_prices/install/install_generator.rb', line 5

def add_migrations
  run 'bundle exec rake railties:install:migrations FROM=spree_sale_prices'
end

#run_migrationsObject



9
10
11
12
13
14
15
16
# File 'lib/generators/spree_sale_prices/install/install_generator.rb', line 9

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