Class: SpreeVpago::Generators::InstallGenerator

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

Instance Method Summary collapse

Instance Method Details

#acleda_logo_templateObject



12
13
14
# File 'lib/generators/spree_vpago/install/install_generator.rb', line 12

def acleda_logo_template
  template 'app/assets/images/vpago/payway/acleda_merchant_logo_300x300.png'
end

#add_migrationsObject



7
8
9
10
# File 'lib/generators/spree_vpago/install/install_generator.rb', line 7

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

#run_migrationsObject



16
17
18
19
20
21
22
23
# File 'lib/generators/spree_vpago/install/install_generator.rb', line 16

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 rails db:migrate'
  else
    puts 'Skipping rails db:migrate, don\'t forget to run it!'
  end
end