diff options
author | Nick Sutterer <apotonick@gmail.com> | 2011-05-12 09:31:36 +0200 |
---|---|---|
committer | Nick Sutterer <apotonick@gmail.com> | 2011-05-12 09:31:36 +0200 |
commit | e3b3f416b57f5642ea25078485f7e9394ad04526 (patch) | |
tree | 494662d709d2e08e98bbba1209f7060dfaec6fe3 /actionpack/lib | |
parent | a117ac431ad3624d047f84f0860c301a844f55c9 (diff) | |
download | rails-e3b3f416b57f5642ea25078485f7e9394ad04526.tar.gz rails-e3b3f416b57f5642ea25078485f7e9394ad04526.tar.bz2 rails-e3b3f416b57f5642ea25078485f7e9394ad04526.zip |
added docs for AbC::UrlFor and AC::UrlFor.
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/abstract_controller/url_for.rb | 6 | ||||
-rw-r--r-- | actionpack/lib/action_controller/metal/url_for.rb | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/lib/abstract_controller/url_for.rb b/actionpack/lib/abstract_controller/url_for.rb index e5d5bef6b4..d2245d0b0d 100644 --- a/actionpack/lib/abstract_controller/url_for.rb +++ b/actionpack/lib/abstract_controller/url_for.rb @@ -1,3 +1,9 @@ +# Includes #url_for into the host class (e.g. an abstract controller or mailer). The class +# has to provide a RouteSet by implementing the #_routes methods. Otherwise, an exception +# will be raised. +# +# Note that this module is completely decoupled from HTTP - the only requirement is a valid +# #_routes implementation. module AbstractController module UrlFor extend ActiveSupport::Concern diff --git a/actionpack/lib/action_controller/metal/url_for.rb b/actionpack/lib/action_controller/metal/url_for.rb index 6fc0cf1fb8..9a03033f48 100644 --- a/actionpack/lib/action_controller/metal/url_for.rb +++ b/actionpack/lib/action_controller/metal/url_for.rb @@ -1,3 +1,9 @@ +# Includes #url_for into the host class. The class has to provide a RouteSet by implementing +# the #_routes methods. Otherwise, an exception will be raised. +# +# In addition to AbstractController::UrlFor, this module accesses the HTTP layer to define +# url options like the +host+. In order to do so, this module requires the host class +# to implement #env, which needs to be a Rack-compatible environment hash. module ActionController module UrlFor extend ActiveSupport::Concern |