Class: Rack::Attack::Track
- Inherits:
-
Object
- Object
- Rack::Attack::Track
- Defined in:
- lib/rack/attack/track.rb
Instance Attribute Summary collapse
-
#filter ⇒ Object
readonly
Returns the value of attribute filter.
Instance Method Summary collapse
-
#initialize(name, options = {}, &block) ⇒ Track
constructor
A new instance of Track.
- #matched_by?(request) ⇒ Boolean
Constructor Details
#initialize(name, options = {}, &block) ⇒ Track
Returns a new instance of Track.
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/rack/attack/track.rb', line 8 def initialize(name, = {}, &block) [:type] = :track @filter = if [:limit] && [:period] Throttle.new(name, , &block) else Check.new(name, , &block) end end |
Instance Attribute Details
#filter ⇒ Object (readonly)
Returns the value of attribute filter.
6 7 8 |
# File 'lib/rack/attack/track.rb', line 6 def filter @filter end |
Instance Method Details
#matched_by?(request) ⇒ Boolean
19 20 21 |
# File 'lib/rack/attack/track.rb', line 19 def matched_by?(request) filter.matched_by?(request) end |