rack-attack/lib/rack/attack/blocklist.rb
2018-06-28 17:08:15 -03:00

12 lines
189 B
Ruby

# frozen_string_literal: true
module Rack
class Attack
class Blocklist < Check
def initialize(name, block)
super
@type = :blocklist
end
end
end
end