Sha256: ab05336e3eee46145a2df63d4ae26ecbbb9ec7ca2dcd1d8c1f8e7eb60f445f4c
Contents?: true
Size: 1.23 KB
Versions: 5
Compression:
Stored size: 1.23 KB
Contents
module SpreeCustomNotifications module Generators class InstallGenerator < Rails::Generators::Base class_option :auto_run_migrations, :type => :boolean, :default => false def add_javascripts append_file 'app/assets/javascripts/store/all.js', "//= require store/spree_custom_notifications\n" append_file 'app/assets/javascripts/admin/all.js', "//= require admin/spree_custom_notifications\n" end def add_stylesheets inject_into_file 'app/assets/stylesheets/store/all.css', " *= require store/spree_custom_notifications\n", :before => /\*\//, :verbose => true inject_into_file 'app/assets/stylesheets/admin/all.css', " *= require admin/spree_custom_notifications\n", :before => /\*\//, :verbose => true end def add_migrations run 'bundle exec rake railties:install:migrations FROM=spree_custom_notifications' 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
5 entries across 5 versions & 1 rubygems