Class: SpreeChannable::Generators::InstallGenerator

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

Instance Method Summary collapse

Instance Method Details

#add_migrationsObject



6
7
8
# File 'lib/generators/spree_channable/install/install_generator.rb', line 6

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

#run_migrationsObject



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

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