Sha256: 8eac1d0bc614d22dbd7d2a6241d4390002caa62f4051c9b6eec767fda2bae545
Contents?: true
Size: 575 Bytes
Versions: 21
Compression:
Stored size: 575 Bytes
Contents
# frozen_string_literal: true require 'rails/generators' module Blacklight class DocumentGenerator < Rails::Generators::Base include Rails::Generators::Migration source_root File.expand_path('../templates', __FILE__) argument :model_name, type: :string, default: "solr_document" desc <<-EOS This generator makes the following changes to your application: 1. Creates a blacklight document in your /app/models directory EOS def create_solr_document template "solr_document.rb", "app/models/#{model_name}.rb" end end end
Version data entries
21 entries across 21 versions & 2 rubygems