Sha256: b6b259d0cf4cda6cf534ca2ce7b625f94ee35ecb63820b9a520250bf67d27543

Contents?: true

Size: 752 Bytes

Versions: 3

Compression:

Stored size: 752 Bytes

Contents

# encoding: utf-8
require 'dynamoid/criteria/chain'

module Dynamoid

  # Allows classes to be queried by where, all, first, and each and return criteria chains.
  module Criteria
    extend ActiveSupport::Concern
    
    module ClassMethods
      
      [:where, :all, :first, :each, :limit, :start].each do |meth|
        # Return a criteria chain in response to a method that will begin or end a chain. For more information, 
        # see Dynamoid::Criteria::Chain.
        #
        # @since 0.2.0
        define_method(meth) do |*args|
          chain = Dynamoid::Criteria::Chain.new(self)
          if args
            chain.send(meth, *args)
          else
            chain.send(meth)
          end
        end
      end
    end
  end
  
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
dynamoid-0.5.0 lib/dynamoid/criteria.rb
dynamoid-0.4.1 lib/dynamoid/criteria.rb
dynamoid-0.4.0 lib/dynamoid/criteria.rb