Sha256: edee8737da2396e95767b42da057984b80ab5560a6f1cd442464029a065abb38
Contents?: true
Size: 752 Bytes
Versions: 7
Compression:
Stored size: 752 Bytes
Contents
module SolidusBraintree 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_braintree' 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