aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/mapper.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/mapper.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/mapper.rb')
-rw-r--r--actionpack/lib/action_dispatch/routing/mapper.rb14
1 files changed, 7 insertions, 7 deletions
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