Sha256: aed53ed6bc58a9861fd63a956de1b41a62bc94ecd593e400fede420f22324784

Contents?: true

Size: 902 Bytes

Versions: 1

Compression:

Stored size: 902 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

  end
end

ActiveSupport.on_load :active_record do
  if ActiveRecord::VERSION::MAJOR >= 4
    extend(EdgeRider::Scoped)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
edge_rider-2.3.1 lib/edge_rider/scoped.rb