Sha256: 075e11e85f0ee2e62b4777f6ff602104f733f60fb1c9193c039fdd2e9af8e8d1
Contents?: true
Size: 591 Bytes
Versions: 3
Compression:
Stored size: 591 Bytes
Contents
module SolidusPrintInvoice module Generators class InstallGenerator < Rails::Generators::Base class_option :auto_run_migrations, :type => :boolean, :default => true def add_migrations run 'rake railties:install:migrations FROM=solidus_print_invoice' end def run_migrations if options[:auto_run_migrations] || ['', 'y', 'Y'].include?(ask "Would you like to run the migrations now? [Y/n]") run 'rake db:migrate' else puts "Skiping rake db:migrate, don't forget to run it!" end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems