Sha256: 2adf9b14ca0319fff77aa80fcbf85bc72d6fb861fc3b451385401e411af6f7c2
Contents?: true
Size: 702 Bytes
Versions: 20
Compression:
Stored size: 702 Bytes
Contents
# frozen_string_literal: true require 'generators/arclight/install_generator' module Arclight ## # Arclight Update generator. This subclasses the Install generator, so this is # intended to override behavior in the install generator that can allow the # downstream application to choose if they want to take our changes or not and # can choose to see a diff of our changes to help them decide. class Update < Arclight::Install source_root File.expand_path('templates', __dir__) def create_blacklight_catalog copy_file 'catalog_controller.rb', 'app/controllers/catalog_controller.rb' end def solr_config directory '../../../../solr', 'solr' end end end
Version data entries
20 entries across 20 versions & 1 rubygems