class Rack::RestrictAccess::AllowFilter

Public Instance Methods

allows_ip?(ip) click to toggle source
# File lib/rack/restrict_access.rb, line 197
def allows_ip?(ip)
  applies_to_ip?(ip)
end
allows_resource?(resource) click to toggle source
# File lib/rack/restrict_access.rb, line 193
def allows_resource?(resource)
  applies_to_resource?(resource)
end