aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/routing.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-06 09:32:00 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-06 09:32:00 +0000
commit853ea556749809658c0a5c0c8b61263ec022fba1 (patch)
treedfc15b8c05381e58aee1c69b80d14ff619a6510d /actionpack/lib/action_controller/routing.rb
parent744058b6997edbd323e888e19e58d6573eb60ddf (diff)
downloadrails-853ea556749809658c0a5c0c8b61263ec022fba1.tar.gz
rails-853ea556749809658c0a5c0c8b61263ec022fba1.tar.bz2
rails-853ea556749809658c0a5c0c8b61263ec022fba1.zip
Made documentation ready for release (AP)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1731 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_controller/routing.rb')
-rw-r--r--actionpack/lib/action_controller/routing.rb19
1 files changed, 9 insertions, 10 deletions
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