aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal
diff options
context:
space:
mode:
authorCarlhuda <carlhuda@engineyard.com>2010-02-26 15:20:41 -0800
committerCarlhuda <carlhuda@engineyard.com>2010-02-26 15:20:41 -0800
commitbae691f61ab8cf4a59adaee6406855e11d009c74 (patch)
tree30dbf62a2f8cce56498fc8d92b35a2d5ff0a66a8 /actionpack/lib/action_controller/metal
parent224c0318bdbaea354bc5ab5c70b267b2a9c3d1c9 (diff)
downloadrails-bae691f61ab8cf4a59adaee6406855e11d009c74.tar.gz
rails-bae691f61ab8cf4a59adaee6406855e11d009c74.tar.bz2
rails-bae691f61ab8cf4a59adaee6406855e11d009c74.zip
Change the API for setting global options for #url_for to self.url_options = { ... }
This attr_accessor can be set in a before filter or in the action itself. Overwriting default_url_options still works but will output a deprecation notice.
Diffstat (limited to 'actionpack/lib/action_controller/metal')
-rw-r--r--actionpack/lib/action_controller/metal/url_for.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/url_for.rb b/actionpack/lib/action_controller/metal/url_for.rb
index 6748cb7bd4..8a06f34d23 100644
--- a/actionpack/lib/action_controller/metal/url_for.rb
+++ b/actionpack/lib/action_controller/metal/url_for.rb
@@ -5,7 +5,7 @@ module ActionController
include ActionDispatch::Routing::UrlFor
include ActionController::RackDelegation
- def merge_options(options)
+ def url_options
super.reverse_merge(
:host => request.host_with_port,
:protocol => request.protocol,