https://github.com/mrcsparker/sunspot_cell_jars
Jar files to make sunspot_cells work with apache-solr-cell
https://github.com/mrcsparker/sunspot_cell_jars
Last synced: 3 months ago
JSON representation
Jar files to make sunspot_cells work with apache-solr-cell
- Host: GitHub
- URL: https://github.com/mrcsparker/sunspot_cell_jars
- Owner: mrcsparker
- License: mit
- Created: 2011-12-02T04:59:14.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-03-06T22:36:07.000Z (over 13 years ago)
- Last Synced: 2024-04-20T07:02:54.574Z (about 1 year ago)
- Language: Ruby
- Homepage:
- Size: 26.7 MB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
- Changelog: HISTORY
- License: LICENSE
Awesome Lists containing this project
README
h1. Sunspot Cell Jars
h2. Introduction
This happy little gem will install the jars that you need for
the very wonderful sunspot_cell project found here on github.h2. Before you install
These jars might give you trouble on the current version of sunspot_solr (though I have not checked).
You might want to use my updated fork, which uses solr 3.5:https://github.com/mrcsparker/sunspot
# If you want to load it for test and development
group :test, :development do
gem 'sunspot_solr', :git => "https://github.com/mrcsparker/sunspot.git"
endAlso, you are going to want to use a version of `sunspot_cell` that is up to date with the
newest 1.3.x release. I am using:https://github.com/zheileman/sunspot_cell
h2. Installation
First, make sure that you have `sunspot_solr` installed and in
your Gemfile.In your Gemfile add:
gem 'sunspot_cell_jars', :git => 'https://github.com/mrcsparker/sunspot_cell_jars.git'Do a `bundle install`
and then run:
rails g sunspot_cell_jars:installand you are on your way!
Note: this gem does not actually configure sunspot_cell, it just installs the jars
needed to make extaction work.h2. Contributing
Fork on GitHub and after you've committed tested patches, send a pull request.
h2. An example Gemfile
For my setup, I am using:
gem 'sunspot_rails', '~> 1.3.0'
gem 'sunspot_cell', :git => 'git://github.com/zheileman/sunspot_cell.git'
gem 'sunspot_rails', '~> 1.3.0'
gem 'sunspot_test'group :development, :test do
gem 'sunspot_cell_jars', :git => 'https://github.com/mrcsparker/sunspot_cell_jars.git'.
gem 'sunspot_solr', :git => "https://github.com/mrcsparker/sunspot.git"
end