aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing.rb
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2010-03-31 14:54:07 +0100
committerAndrew White <andyw@pixeltrix.co.uk>2010-03-31 14:54:07 +0100
commitc10bf8205cb6e027428c398ed1cf27ff924258a1 (patch)
tree49cbb2d02cc87e5170c5b473fe1718fc6d55bd30 /actionpack/lib/action_dispatch/routing.rb
parente287b53fe303b46be9ba0127aee686b228092fda (diff)
downloadrails-c10bf8205cb6e027428c398ed1cf27ff924258a1.tar.gz
rails-c10bf8205cb6e027428c398ed1cf27ff924258a1.tar.bz2
rails-c10bf8205cb6e027428c398ed1cf27ff924258a1.zip
Remove routing implementation details from RDoc
Diffstat (limited to 'actionpack/lib/action_dispatch/routing.rb')
-rw-r--r--actionpack/lib/action_dispatch/routing.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/routing.rb b/actionpack/lib/action_dispatch/routing.rb
index 2c3623cfa5..3d9084a27e 100644
--- a/actionpack/lib/action_dispatch/routing.rb
+++ b/actionpack/lib/action_dispatch/routing.rb
@@ -220,11 +220,11 @@ module ActionDispatch
autoload :RouteSet, 'action_dispatch/routing/route_set'
autoload :UrlFor, 'action_dispatch/routing/url_for'
- SEPARATORS = %w( / . ? )
- HTTP_METHODS = [:get, :head, :post, :put, :delete, :options]
+ SEPARATORS = %w( / . ? ) #:nodoc:
+ HTTP_METHODS = [:get, :head, :post, :put, :delete, :options] #:nodoc:
# A helper module to hold URL related helpers.
- module Helpers
+ module Helpers #:nodoc:
include ActionController::PolymorphicRoutes
end
end