Sha256: 2337db215ed3258b887145d740afeeee704116e5c0d86410b78d8d3d3c14a8b2
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
# frozen_string_literal: true module SolidusExtend module Generators class InstallGenerator < Rails::Generators::Base class_option :auto_run_migrations, type: :boolean, default: false def add_javascripts append_file 'vendor/assets/javascripts/spree/frontend/all.js', "//= require spree/frontend/solidus_extend\n" # rubocop:disable Metrics/LineLength append_file 'vendor/assets/javascripts/spree/backend/all.js', "//= require spree/backend/solidus_extend\n" # rubocop:disable Metrics/LineLength end def add_stylesheets inject_into_file 'vendor/assets/stylesheets/spree/frontend/all.css', " *= require spree/frontend/solidus_extend\n", before: %r{\*/}, verbose: true # rubocop:disable Metrics/LineLength inject_into_file 'vendor/assets/stylesheets/spree/backend/all.css', " *= require spree/backend/solidus_extend\n", before: %r{\*/}, verbose: true # rubocop:disable Metrics/LineLength end def add_migrations run 'bin/rails railties:install:migrations FROM=solidus_extend' end def run_migrations run_migrations = options[:auto_run_migrations] || ['', 'y', 'Y'].include?(ask('Would you like to run the migrations now? [Y/n]')) # rubocop:disable Metrics/LineLength if run_migrations run 'bin/rails db:migrate' else puts 'Skipping bin/rails db:migrate, don\'t forget to run it!' # rubocop:disable Rails/Output end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
solidus_extend-0.0.2 | lib/generators/solidus_extend/install/install_generator.rb |