Created
January 22, 2016 04:44
-
-
Save ScorpiusZ/f4cac4ebfdbaea4540b6 to your computer and use it in GitHub Desktop.
This file contains 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
module Searchable | |
extend ActiveSupport::Concern | |
included do | |
scope :pg_search, ->(keyword){ where(search_query keyword) } | |
include ClassMethods | |
end | |
module ClassMethods | |
def search_against params | |
@search_against ||= params if params.is_a? Array | |
end | |
def search_query keyword | |
@search_against.map{|x| x.to_s + "~* '#{keyword}'"}.join(' or ') | |
end | |
end | |
end | |
class Topic < ActiveRecord::Base | |
include Searchable | |
search_against [:title,:description,:body] | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment