Skip to content

Instantly share code, notes, and snippets.

@ScorpiusZ
Created January 22, 2016 04:44
Show Gist options
  • Save ScorpiusZ/f4cac4ebfdbaea4540b6 to your computer and use it in GitHub Desktop.
Save ScorpiusZ/f4cac4ebfdbaea4540b6 to your computer and use it in GitHub Desktop.
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