Sha256: 42c69e152bd80a32c3f0bbc65083cb73316601137f2096857bd93e2b7e98b3aa
Contents?: true
Size: 1.68 KB
Versions: 4
Compression:
Stored size: 1.68 KB
Contents
# frozen_string_literal: true module SolidusPaypalBraintree 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 solidus_paypal_braintree/frontend\n" append_file 'vendor/assets/javascripts/spree/backend/all.js', "//= require spree/backend/solidus_paypal_braintree\n" # rubocop:disable Layout/LineLength end def add_stylesheets inject_into_file 'vendor/assets/stylesheets/spree/frontend/all.css', " *= require spree/frontend/solidus_paypal_braintree\n", before: %r{\*/}, verbose: true # rubocop:disable Layout/LineLength inject_into_file 'vendor/assets/stylesheets/spree/backend/all.css', " *= require spree/backend/solidus_paypal_braintree\n", before: %r{\*/}, verbose: true # rubocop:disable Layout/LineLength end def add_migrations run 'bundle exec rake railties:install:migrations FROM=solidus_paypal_braintree' end def mount_engine insert_into_file File.join('config', 'routes.rb'), after: "Rails.application.routes.draw do\n" do "mount SolidusPaypalBraintree::Engine, at: '/solidus_paypal_braintree'\n" end 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 Layout/LineLength if run_migrations run 'bundle exec rake db:migrate' else say_status :skipping, 'rake db:migrate, don\'t forget to run it!' end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems