Skip to content

Instantly share code, notes, and snippets.

@osiro
Created May 22, 2014 07:42
Show Gist options
  • Save osiro/36dee5e07a9549d53169 to your computer and use it in GitHub Desktop.
Save osiro/36dee5e07a9549d53169 to your computer and use it in GitHub Desktop.
class Project < ActiveRecord::Base
include PgSearch
pg_search_scope :search_by_content,
against: [:title, :description],
using: { tsearch: { any_word: true, dictionary: "english" } }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment