From 5bdf50dbccf65cc4b6a50fe44a98318e9b433b1f Mon Sep 17 00:00:00 2001 From: Oscar Del Ben Date: Tue, 17 Apr 2012 15:57:38 +0200 Subject: Warn about do end syntax in redirect option --- actionpack/lib/action_dispatch/routing/redirection.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/actionpack/lib/action_dispatch/routing/redirection.rb b/actionpack/lib/action_dispatch/routing/redirection.rb index 797ef84312..17c1cfb379 100644 --- a/actionpack/lib/action_dispatch/routing/redirection.rb +++ b/actionpack/lib/action_dispatch/routing/redirection.rb @@ -72,6 +72,9 @@ module ActionDispatch # "http://#{request.host_with_port}#{path}" # } # + # Note that the `do end` syntax for the redirect block wouldn't work, as Ruby would pass + # the block to `match` instead of `redirect`. Use `{ ... }` instead. + # # The options version of redirect allows you to supply only the parts of the url which need # to change, it also supports interpolation of the path similar to the first example. # -- cgit v1.2.3