Sha256: 578854718198e676be36e14fd958b69647704ecc2f253bef809c1677f474ceb8
Contents?: true
Size: 535 Bytes
Versions: 13
Compression:
Stored size: 535 Bytes
Contents
# frozen_string_literal: true require 'rails/generators' module GeoblacklightSidecarImages class ViewsGenerator < Rails::Generators::Base source_root File.expand_path('templates', __dir__) desc <<-DESCRIPTION This generator makes the following changes to your application: 1. Creates an app/views/catalog directory DESCRIPTION def create_views copy_file( 'views/catalog/_index_split_default.html.erb', 'app/views/catalog/_index_split_default.html.erb' ) end end end
Version data entries
13 entries across 13 versions & 1 rubygems