Sha256: ff254c2c8d8502061486f7900445e8de0fe3e9abc99a4c1810d30ead909a5945
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 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 args[0] = klass.primary_key if [nil, :all].include?(args[0]) end args << options result = klass.#{method}(*args) result.uniq! if result.is_a?(Array) && Config.remove_duplicates? result end end end_eval end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
searchgasm-1.4.0 | lib/searchgasm/search/searching.rb |