Sha256: b441d085d4c4604576a5f049d4e90e73d50ad7f904859137586afede4d21180f
Contents?: true
Size: 647 Bytes
Versions: 7
Compression:
Stored size: 647 Bytes
Contents
module SolidusSixSaferpay module Generators class InstallGenerator < Rails::Generators::Base class_option :auto_run_migrations, type: :boolean, default: false def add_migrations run 'bundle exec rake railties:install:migrations FROM=solidus_six_saferpay' end 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 end end end
Version data entries
7 entries across 7 versions & 1 rubygems