Sha256: 8991dd3eb88d86ad27f3d26b7f61e733ca2105f154ee8c3d9395e6cf815684e8

Contents?: true

Size: 431 Bytes

Versions: 1

Compression:

Stored size: 431 Bytes

Contents

# frozen_string_literal: true
require "prop/limiter"
require "forwardable"

module Prop
  VERSION = "2.4.0"

  # Short hand for accessing Prop::Limiter methods
  class << self
    extend Forwardable
    def_delegators :"Prop::Limiter", :read, :write, :cache, :cache=, :configure, :configurations, :disabled, :before_throttle
    def_delegators :"Prop::Limiter", :throttle, :throttle!, :throttled?, :count, :query, :reset
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
prop-2.4.0 lib/prop.rb