54 lines
786 B
Markdown
54 lines
786 B
Markdown
sunspot_mongoid
|
|
====
|
|
|
|
A Sunspot wrapper for Mongoid.
|
|
|
|
Install
|
|
----
|
|
|
|
gem install sunspot_mongoid
|
|
|
|
Examples
|
|
----
|
|
|
|
class Post
|
|
include Mongoid::Document
|
|
field :title
|
|
|
|
include Sunspot::Mongoid
|
|
searchable do
|
|
text :title
|
|
end
|
|
end
|
|
|
|
For Rails3
|
|
----
|
|
|
|
### as gem:
|
|
|
|
add a gem to Gemfile as following,
|
|
|
|
gem 'sunspot_mongoid'
|
|
|
|
### as plugin:
|
|
|
|
add gems to Gemfile as following,
|
|
|
|
gem 'sunspot'
|
|
gem 'sunspot_rails'
|
|
|
|
and install sunspot_mongoid as rails plugin,
|
|
|
|
rails plugin install git://github.com/jugyo/sunspot_mongoid.git
|
|
|
|
Links
|
|
----
|
|
|
|
* [sunspot](http://github.com/outoftime/sunspot)
|
|
* [sunspot_rails](http://github.com/outoftime/sunspot/tree/master/sunspot_rails/)
|
|
|
|
Copyright
|
|
----
|
|
|
|
Copyright (c) 2010 jugyo. See LICENSE for details.
|