Sha256: bd1d3cc5ecc1e4fadf8dcfebe364a6d759c143981c12c1b8ffbd40615059c07b
Contents?: true
Size: 654 Bytes
Versions: 2
Compression:
Stored size: 654 Bytes
Contents
module SpreeAnalyticsTrackers 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_analytics_trackers' 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