module ActiveSearch::SearchHelper::ClassMethods

Public Instance Methods

findable_by(*values)
Alias for: searchable_by
is_searchable?() click to toggle source
# File lib/active_search/search_helper.rb, line 16
def is_searchable?
  false
end
Also aliased as: searchable?
searchable?()
Alias for: is_searchable?
searchable_by(*values) click to toggle source
# File lib/active_search/search_helper.rb, line 20
def searchable_by(*values)
  @searchable_values = values
  include ActiveSearch::IsSearchable
end
Also aliased as: findable_by