posterboy

Adds full-text search to Active Record models on PostgreSQL


License
MIT
Install
gem install posterboy -v 0.0.1

Documentation

Usage:

class User < ActiveRecord::Base
  has_many :tags, through: :user_tags
  search_on :first_name, :last_name, tags: :name
end

User.search("Syd Vicious")