Sha256: 357f008fa444800ea503830c4d5caa18bebec8d1734413f29807a2b534b813fe
Contents?: true
Size: 636 Bytes
Versions: 2
Compression:
Stored size: 636 Bytes
Contents
module SpreeEbsin 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=spree_ebsin' 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_ebsin-3.1.1.2 | lib/generators/spree_ebsin/install/install_generator.rb |
spree_ebsin-3.1.1.1 | lib/generators/spree_ebsin/install/install_generator.rb |