Sha256: a89ac6ac4ea4456f3acde6dcec84e6164970cb989fb6f86bc1533d63bc849091
Contents?: true
Size: 788 Bytes
Versions: 2
Compression:
Stored size: 788 Bytes
Contents
# frozen_string_literal: true 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 %i[where all first last each record_limit scan_limit batch start scan_index_forward].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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dynamoid-3.1.0 | lib/dynamoid/criteria.rb |
dynamoid-3.0.0 | lib/dynamoid/criteria.rb |