Sha256: e29b6cd8ac6659da49adbd66fbd25c6194d0be59767f2d454ca992b10d6825a1

Contents?: true

Size: 911 Bytes

Versions: 1

Compression:

Stored size: 911 Bytes

Contents

require 'rails/generators'

module Blacklight
  class SolrGenerator < Rails::Generators::Base
    source_root ::File.expand_path('../templates', __FILE__)

    desc <<-EOF
      This generator makes the following changes to your application:
       1. Installs solr_wrapper into your application
       2. Copies default blacklight solr config directory into your application
       3. Copies default .solr_wrapper into your application
       4. Adds rsolr to your Gemfile
    EOF

    def install_solrwrapper
      gem_group :development, :test do
        gem 'solr_wrapper', '>= 0.3'
      end

      append_to_file "Rakefile", "\nrequire 'solr_wrapper/rake_task' unless Rails.env.production?\n"
    end

    def copy_solr_conf
      directory 'solr'
    end

    def solr_wrapper_config
      copy_file '.solr_wrapper.yml'
    end

    def add_rsolr_gem
      gem 'rsolr', '>= 1.0', '< 3'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blacklight-7.0.0.rc1 lib/generators/blacklight/solr_generator.rb