Sha256: 8e917afb6c6d4288d50707ffc42ff5e3d76c7dc2fbc69a1d798940ae25b5addc
Contents?: true
Size: 784 Bytes
Versions: 1
Compression:
Stored size: 784 Bytes
Contents
module SolidusProductFeed module Generators class InstallGenerator < Rails::Generators::Base class_option :auto_run_migrations, :type => :boolean, :default => false def add_migrations run 'rake railties:install:migrations FROM=spree_product_feed' end def add_javascripts append_file "vendor/assets/javascripts/spree/backend/all.js", "//= require spree/backend/spree_product_feed\n" 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 'rake db:migrate' else puts "Skiping rake db:migrate, don't forget to run it!" end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
solidus_product_feed-0.1.0 | lib/generators/solidus_product_feed/install/install_generator.rb |