Sha256: 982722879d06676ed253f9c49aedfb5ba61a386571d55826cfd3831f64650938

Contents?: true

Size: 368 Bytes

Versions: 2

Compression:

Stored size: 368 Bytes

Contents

module Rack; module Throttle
  ##
  # This rate limiter strategy throttles the application by defining a
  # maximum number of allowed HTTP requests per day (by default, 86,400
  # requests per 24 hours, which works out to an average of 1 request per
  # second).
  #
  # _Not yet implemented in the current release._
  class Daily < Limiter
    # TODO
  end
end; end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rack-throttle-0.2.0 lib/rack/throttle/daily.rb
rack-throttle-0.1.0 lib/rack/throttle/daily.rb