Sha256: d71dd81d04b28fae205205646b44d3cd30d1020764d5adcb88b4b0db6b12b191

Contents?: true

Size: 882 Bytes

Versions: 7

Compression:

Stored size: 882 Bytes

Contents

module EdgeRider
  module Scoped
    
    VALID_FIND_OPTIONS = [ :conditions, :include, :joins, :limit, :offset,
                           :order, :select, :readonly, :group, :having, :from, :lock ]

    def scoped(options = nil)
      options ||= {}
      relation = all
  
      options.assert_valid_keys(VALID_FIND_OPTIONS)
      finders = options.dup
      finders.delete_if { |key, value| value.nil? && key != :limit }
  
      ((VALID_FIND_OPTIONS - [:conditions, :include]) & finders.keys).each do |finder|
        relation = relation.send(finder, finders[finder])
      end
  
      relation = relation.where(finders[:conditions]) if options.has_key?(:conditions)
      relation = relation.includes(finders[:include]) if options.has_key?(:include)
  
      relation
    end

    if ActiveRecord::VERSION::MAJOR >= 4
      ActiveRecord::Base.extend(self)
    end

  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
edge_rider-2.3.0 lib/edge_rider/scoped.rb
edge_rider-2.2.0 lib/edge_rider/scoped.rb
edge_rider-2.1.1 lib/edge_rider/scoped.rb
edge_rider-2.1.0 lib/edge_rider/scoped.rb
edge_rider-2.0.0 lib/edge_rider/scoped.rb
edge_rider-1.1.0 lib/edge_rider/scoped.rb
edge_rider-1.0.0 lib/edge_rider/scoped.rb