Sha256: 169e3c98ae50d3b3fa6fc5237a5dd112683829abd7553b84f20b718bc01cbd6f

Contents?: true

Size: 1.16 KB

Versions: 5

Compression:

Stored size: 1.16 KB

Contents

require 'rails/generators'

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

  def add_gems
    gem 'blacklight-spotlight'
    Bundler.with_clean_env do
      run 'bundle install --quiet'
    end
  end

  def run_blacklight_generator
    say_status('warning', 'GENERATING BL', :yellow)
    generate 'blacklight:install', '--devise --jettywrapper'
  end

  def run_spotlight_migrations
    rake 'spotlight:install:migrations'
    rake 'db:migrate'
  end

  def add_spotlight_routes_and_assets
    # spotlight will provide its own catalog controller.. remove blacklight's to
    # avoid getting prompted about file conflicts
    remove_file 'app/controllers/catalog_controller.rb'

    generate 'spotlight:install', '-f --mailer_default_url_host=localhost:3000'
    rake 'db:migrate'
  end

  def add_catalog_controller
    copy_file 'catalog_controller.rb', 'app/controllers/catalog_controller.rb', force: true
  end

  def configure_gdor
    copy_file 'gdor.yml', 'config/gdor.yml', force: true
  end
  
  def run_spotlight_dor_resources_generator
    generate 'spotlight:dor:resources:install'
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
spotlight-dor-resources-1.0.1 spec/test_app_templates/lib/generators/test_app_generator.rb
spotlight-dor-resources-1.0.0 spec/test_app_templates/lib/generators/test_app_generator.rb
spotlight-dor-resources-0.6.2 spec/test_app_templates/lib/generators/test_app_generator.rb
spotlight-dor-resources-0.6.1 spec/test_app_templates/lib/generators/test_app_generator.rb
spotlight-dor-resources-0.6.0 spec/test_app_templates/lib/generators/test_app_generator.rb