From 782583235d01caaefbdc24197b57623bc975d533 Mon Sep 17 00:00:00 2001 From: Earl J St Sauver Date: Sun, 8 Sep 2013 14:25:38 -0700 Subject: Blacklist refferenced in docs is actually whitelist The docs refference a blacklist, but really what's being described is a whitelist. Anything that matches the constraint gets through to the path. --- actionpack/lib/action_dispatch/routing/mapper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 288ce3e867..f4dd075153 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -432,10 +432,10 @@ module ActionDispatch # # match 'json_only', constraints: { format: 'json' } # - # class Blacklist + # class Whitelist # def matches?(request) request.remote_ip == '1.2.3.4' end # end - # match 'path', to: 'c#a', constraints: Blacklist.new + # match 'path', to: 'c#a', constraints: Whitelist.new # # See Scoping#constraints for more examples with its scope # equivalent. -- cgit v1.2.3