From 853ea556749809658c0a5c0c8b61263ec022fba1 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 6 Jul 2005 09:32:00 +0000 Subject: Made documentation ready for release (AP) git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1731 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/routing.rb | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'actionpack/lib/action_controller/routing.rb') diff --git a/actionpack/lib/action_controller/routing.rb b/actionpack/lib/action_controller/routing.rb index f8ca5e0930..d2e719bf40 100644 --- a/actionpack/lib/action_controller/routing.rb +++ b/actionpack/lib/action_controller/routing.rb @@ -1,7 +1,6 @@ module ActionController - module Routing + module Routing #:nodoc: class << self - def expiry_hash(options, recall) k = v = nil expire_on = {} @@ -44,7 +43,7 @@ module ActionController end end - class Component #:nodoc + class Component #:nodoc: def dynamic?() false end def optional?() false end @@ -61,7 +60,7 @@ module ActionController end end - class StaticComponent < Component #:nodoc + class StaticComponent < Component #:nodoc: attr_reader :value def initialize(value) @@ -79,7 +78,7 @@ module ActionController end end - class DynamicComponent < Component #:nodoc + class DynamicComponent < Component #:nodoc: attr_reader :key, :default attr_accessor :condition @@ -174,7 +173,7 @@ module ActionController end end - class ControllerComponent < DynamicComponent #:nodoc + class ControllerComponent < DynamicComponent #:nodoc: def key() :controller end def add_segments_to(g) @@ -225,7 +224,7 @@ module ActionController end end - class PathComponent < DynamicComponent #:nodoc + class PathComponent < DynamicComponent #:nodoc: def optional?() true end def default() '' end def condition() nil end @@ -255,7 +254,7 @@ module ActionController end end - class Route + class Route #:nodoc: attr_accessor :components, :known attr_reader :path, :options, :keys @@ -351,7 +350,7 @@ module ActionController end end - class RouteSet + class RouteSet #:nodoc: attr_reader :routes, :categories, :controller_to_selector def initialize @routes = [] @@ -563,7 +562,7 @@ module ActionController end end - module NamedRoutes + module NamedRoutes #:nodoc: Helpers = [] class << self def clear() Helpers.clear end -- cgit v1.2.3