diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2010-03-31 14:54:07 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2010-03-31 14:54:07 +0100 |
commit | c10bf8205cb6e027428c398ed1cf27ff924258a1 (patch) | |
tree | 49cbb2d02cc87e5170c5b473fe1718fc6d55bd30 | |
parent | e287b53fe303b46be9ba0127aee686b228092fda (diff) | |
download | rails-c10bf8205cb6e027428c398ed1cf27ff924258a1.tar.gz rails-c10bf8205cb6e027428c398ed1cf27ff924258a1.tar.bz2 rails-c10bf8205cb6e027428c398ed1cf27ff924258a1.zip |
Remove routing implementation details from RDoc
-rw-r--r-- | actionpack/lib/action_dispatch/routing.rb | 6 | ||||
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 14 | ||||
-rw-r--r-- | actionpack/lib/action_dispatch/routing/route_set.rb | 4 |
3 files changed, 12 insertions, 12 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 diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 5a3868e1d4..39260f7ff9 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -3,7 +3,7 @@ require 'active_support/core_ext/hash/except' module ActionDispatch module Routing class Mapper - class Constraints + class Constraints #:nodoc: def self.new(app, constraints = []) if constraints.any? super(app, constraints) @@ -31,7 +31,7 @@ module ActionDispatch end end - class Mapping + class Mapping #:nodoc: IGNORE_OPTIONS = [:to, :as, :controller, :action, :via, :on, :constraints, :defaults, :only, :except, :anchor] def initialize(set, scope, args) @@ -179,7 +179,7 @@ module ActionDispatch end module Base - def initialize(set) + def initialize(set) #:nodoc: @set = set end @@ -251,7 +251,7 @@ module ActionDispatch end module Scoping - def initialize(*args) + def initialize(*args) #:nodoc: @scope = {} super end @@ -371,7 +371,7 @@ module ActionDispatch end module Resources - CRUD_ACTIONS = [:index, :show, :create, :update, :destroy] + CRUD_ACTIONS = [:index, :show, :create, :update, :destroy] #:nodoc: class Resource #:nodoc: def self.default_actions @@ -462,7 +462,7 @@ module ActionDispatch end end - def initialize(*args) + def initialize(*args) #:nodoc: super @scope[:resources_path_names] = @set.resources_path_names end @@ -628,7 +628,7 @@ module ActionDispatch end protected - def parent_resource + def parent_resource #:nodoc: @scope[:scope_level_resource] end diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb index bb689beed9..c8e4371bb7 100644 --- a/actionpack/lib/action_dispatch/routing/route_set.rb +++ b/actionpack/lib/action_dispatch/routing/route_set.rb @@ -11,7 +11,7 @@ module ActionDispatch PARAMETERS_KEY = 'action_dispatch.request.path_parameters' - class Dispatcher + class Dispatcher #:nodoc: def initialize(options={}) @defaults = options[:defaults] @glob_param = options.delete(:glob) @@ -281,7 +281,7 @@ module ActionDispatch route end - class Generator + class Generator #:nodoc: attr_reader :options, :recall, :set, :script_name, :named_route def initialize(options, recall, set, extras = false) |