Sha256: 819020d82bb7246a20bc1b7a8d0092dccce8f3871418ba61c0564d3297836bd1

Contents?: true

Size: 1.15 KB

Versions: 4

Compression:

Stored size: 1.15 KB

Contents

require 'rails/generators'

class TestAppGenerator < Rails::Generators::Base
  source_root File.expand_path("../../../../spec/test_app_templates", __FILE__)

  # This is only necessary for Rails 3
  def remove_index
    remove_file "public/index.html"
  end

  def run_blacklight_generator
    say_status("warning", "GENERATING BL", :yellow)

    generate 'blacklight:install', '--devise'
  end

  def run_blacklight_range_limit_generator
    say_status("warning", "GENERATING BL", :yellow)

    generate 'blacklight_range_limit:install'
  end

  def fixtures
    FileUtils.mkdir_p 'spec/fixtures/solr_documents'
    directory '../fixtures/solr_documents', 'spec/fixtures/solr_documents'
  end

  def inject_into_catalog_controller
    inject_into_file 'app/controllers/catalog_controller.rb', after: /config.add_facet_field 'format'.*$/ do
      "\n    config.add_facet_field 'pub_date_si', label: 'Publication Date Sort', **default_range_config"
    end
  end

  def assets
    return if !defined?(Sprockets::VERSION) || Sprockets::VERSION < '4'

    append_to_file 'app/assets/config/manifest.js', "\n//= link application.js"
    empty_directory 'app/assets/images'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
blacklight_range_limit-8.2.3 spec/test_app_templates/lib/generators/test_app_generator.rb
blacklight_range_limit-8.2.2 spec/test_app_templates/lib/generators/test_app_generator.rb
blacklight_range_limit-8.2.1 spec/test_app_templates/lib/generators/test_app_generator.rb
blacklight_range_limit-8.2.0 spec/test_app_templates/lib/generators/test_app_generator.rb