rack-attack/lib/rack/attack/blacklist.rb
2012-07-27 17:40:11 -04:00

13 lines
186 B
Ruby

require_relative 'check'
module Rack
module Attack
class Blacklist < Check
def initialize(name, block)
super
@type = :blacklist
end
end
end
end