aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/mapper.rb
diff options
context:
space:
mode:
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 4e9112bc04..2c7ee7dad0 100644
--- a/actionpack/lib/action_dispatch/routing/mapper.rb
+++ b/actionpack/lib/action_dispatch/routing/mapper.rb
@@ -4,7 +4,7 @@ require 'active_support/core_ext/object/blank'
module ActionDispatch
module Routing
class Mapper
- class Constraints
+ class Constraints #:nodoc:
def self.new(app, constraints = [])
if constraints.any?
super(app, constraints)
@@ -32,7 +32,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)
@@ -180,7 +180,7 @@ module ActionDispatch
end
module Base
- def initialize(set)
+ def initialize(set) #:nodoc:
@set = set
end
@@ -267,7 +267,7 @@ module ActionDispatch
end
module Scoping
- def initialize(*args)
+ def initialize(*args) #:nodoc:
@scope = {}
super
end
@@ -388,7 +388,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
@@ -513,7 +513,7 @@ module ActionDispatch
end
end
- def initialize(*args)
+ def initialize(*args) #:nodoc:
super
@scope[:resources_path_names] = @set.resources_path_names
end
@@ -670,7 +670,7 @@ module ActionDispatch
end
protected
- def parent_resource
+ def parent_resource #:nodoc:
@scope[:scope_level_resource]
end