Sha256: aa5697cc7db14f54bf7c3b3e6745ab896f7f8b0e37f7cc3f6fd2371acdce4580
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
module Searchgasm module Search # = Searchgasm Searching # # Implements searching functionality for searchgasm. Searchgasm::Search::Base and Searchgasm::Conditions::Base can both search and include # this module. module Searching # Use these methods just like you would in ActiveRecord SEARCH_METHODS = [:all, :find, :first] CALCULATION_METHODS = [:average, :calculate, :count, :maximum, :minimum, :sum] (SEARCH_METHODS + CALCULATION_METHODS).each do |method| class_eval <<-"end_eval", __FILE__, __LINE__ def #{method}(*args) find_options = {} options = args.extract_options! # can't pass options, your options are in the search klass.send(:with_scope, :find => acting_as_filter? ? {} : scope) do options = sanitize(#{SEARCH_METHODS.include?(method)}) if #{CALCULATION_METHODS.include?(method)} options[:distinct] = true if #{method == :count} && !joins.blank? && Config.search.remove_duplicates? args[0] = klass.primary_key if [nil, :all].include?(args[0]) end args << options klass.#{method}(*args) end end end_eval end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
searchgasm-1.5.3 | lib/searchgasm/search/searching.rb |