Created
January 16, 2009 07:32
-
-
Save scoop/47860 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Project < ActiveRecord::Base | |
define_index do | |
indexes :name | |
indexes :description | |
has tags(:id), :as => :tag_ids | |
end | |
end | |
Project.faceted_search :group_by => :tag_ids | |
# => { #<Tag id: 1, name: "foo"> => 1, #<Tag id: 2, name: "bar"> => 3 } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment