Skip to content

Instantly share code, notes, and snippets.

@dmitryrck
Created March 1, 2015 00:54
Show Gist options
  • Save dmitryrck/66e47d488517cd38e19f to your computer and use it in GitHub Desktop.
Save dmitryrck/66e47d488517cd38e19f to your computer and use it in GitHub Desktop.
class Model < ActiveRecord::Base
def self.search(term)
words = sanitize(term.parameterize(" ").scan(/\w+/) * "+")
where("name @@ to_tsquery('portuguese', #{words})")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment