Sha256: 264b3446e52db8d92195fa7d1aaa1af4822454ab53e9662fc9da0a0608e18019
Contents?: true
Size: 748 Bytes
Versions: 7
Compression:
Stored size: 748 Bytes
Contents
module SolidusGateway 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_gateway' end def run_migrations if running_migrations? run 'bundle exec rake db:migrate' else puts "Skiping rake db:migrate, don't forget to run it!" end end private def running_migrations? options.auto_run_migrations? || begin response = ask 'Would you like to run the migrations now? [Y/n]' ['', 'y'].include? response.downcase end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems