Skip to content

Commit

Permalink
Remove routing implementation details from RDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
pixeltrix committed Mar 31, 2010
1 parent e287b53 commit c10bf82
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions actionpack/lib/action_dispatch/routing.rb
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,11 @@ module Routing
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
Expand Down
14 changes: 7 additions & 7 deletions actionpack/lib/action_dispatch/routing/mapper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module ActionDispatch
module Routing
class Mapper
class Constraints
class Constraints #:nodoc:
def self.new(app, constraints = [])
if constraints.any?
super(app, constraints)
Expand Down Expand Up @@ -31,7 +31,7 @@ def call(env)
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)
Expand Down Expand Up @@ -179,7 +179,7 @@ def self.normalize_path(path)
end

module Base
def initialize(set)
def initialize(set) #:nodoc:
@set = set
end

Expand Down Expand Up @@ -251,7 +251,7 @@ def map_method(method, *args, &block)
end

module Scoping
def initialize(*args)
def initialize(*args) #:nodoc:
@scope = {}
super
end
Expand Down Expand Up @@ -371,7 +371,7 @@ def merge_options_scope(parent, child)
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
Expand Down Expand Up @@ -462,7 +462,7 @@ def member_name
end
end

def initialize(*args)
def initialize(*args) #:nodoc:
super
@scope[:resources_path_names] = @set.resources_path_names
end
Expand Down Expand Up @@ -628,7 +628,7 @@ def match(*args)
end

protected
def parent_resource
def parent_resource #:nodoc:
@scope[:scope_level_resource]
end

Expand Down
4 changes: 2 additions & 2 deletions actionpack/lib/action_dispatch/routing/route_set.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class RouteSet #:nodoc:

PARAMETERS_KEY = 'action_dispatch.request.path_parameters'

class Dispatcher
class Dispatcher #:nodoc:
def initialize(options={})
@defaults = options[:defaults]
@glob_param = options.delete(:glob)
Expand Down Expand Up @@ -281,7 +281,7 @@ def add_route(app, conditions = {}, requirements = {}, defaults = {}, name = nil
route
end

class Generator
class Generator #:nodoc:
attr_reader :options, :recall, :set, :script_name, :named_route

def initialize(options, recall, set, extras = false)
Expand Down

0 comments on commit c10bf82

Please sign in to comment.