aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-03-07 01:04:14 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-03-07 01:04:14 +0530
commit7c90d91c3c43bdbba25d38589aed0e2940af3bc8 (patch)
tree5fd756835ebd41371c678e8804675ed287a9d3ae /actionpack/lib/abstract_controller
parentf3a3203b00438c7c2782ad6a914a73f96dec95f7 (diff)
downloadrails-7c90d91c3c43bdbba25d38589aed0e2940af3bc8.tar.gz
rails-7c90d91c3c43bdbba25d38589aed0e2940af3bc8.tar.bz2
rails-7c90d91c3c43bdbba25d38589aed0e2940af3bc8.zip
Clean up module docs [ci skip]
Removed some useless docstrings and no-doc'ed some.
Diffstat (limited to 'actionpack/lib/abstract_controller')
-rw-r--r--actionpack/lib/abstract_controller/url_for.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/actionpack/lib/abstract_controller/url_for.rb b/actionpack/lib/abstract_controller/url_for.rb
index e4261068d8..4a95e1f276 100644
--- a/actionpack/lib/abstract_controller/url_for.rb
+++ b/actionpack/lib/abstract_controller/url_for.rb
@@ -1,10 +1,10 @@
-# Includes +url_for+ into the host class (e.g. an abstract controller or mailer). The class
-# has to provide a +RouteSet+ by implementing the <tt>_routes</tt> methods. Otherwise, an
-# exception will be raised.
-#
-# Note that this module is completely decoupled from HTTP - the only requirement is a valid
-# <tt>_routes</tt> implementation.
module AbstractController
+ # Includes +url_for+ into the host class (e.g. an abstract controller or mailer). The class
+ # has to provide a +RouteSet+ by implementing the <tt>_routes</tt> methods. Otherwise, an
+ # exception will be raised.
+ #
+ # Note that this module is completely decoupled from HTTP - the only requirement is a valid
+ # <tt>_routes</tt> implementation.
module UrlFor
extend ActiveSupport::Concern
include ActionDispatch::Routing::UrlFor