public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/josh/rails.git
Search Repo:
Keep the irrelevant stuff out with :nodoc:

git-svn-id: 
http://svn-commit.rubyonrails.org/rails/branches/1-2-pre-release@5981 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Wed Jan 17 22:31:55 -0800 2007
commit  cfb3a80862a94cbd96c6b19f0cdd2f45316e69f0
tree    db05ee65981ff4ddf0079c96ee676084664fcf96
parent  5c61b170774cc785b3db95b9cbb2b2574948bed9
...
964
965
966
967
 
968
969
970
...
996
997
998
999
 
1000
1001
1002
...
964
965
966
 
967
968
969
970
...
996
997
998
 
999
1000
1001
1002
0
@@ -964,7 +964,7 @@ module ActionController
0
       #
0
       # Mapper instances have relatively few instance methods, in order to avoid
0
       # clashes with named routes.
0
- class Mapper
0
+ class Mapper #:nodoc:
0
         def initialize(set)
0
           @set = set
0
         end
0
@@ -996,7 +996,7 @@ module ActionController
0
       # A NamedRouteCollection instance is a collection of named routes, and also
0
       # maintains an anonymous module that can be used to install helpers for the
0
       # named routes.
0
- class NamedRouteCollection
0
+ class NamedRouteCollection #:nodoc:
0
         include Enumerable
0
 
0
         attr_reader :routes, :helpers
...
4
5
6
7
8
9
 
 
10
11
12
...
37
38
39
40
 
41
42
43
...
48
49
50
51
52
 
53
54
55
...
58
59
60
61
62
63
64
65
...
4
5
6
 
 
 
7
8
9
10
11
...
36
37
38
 
39
40
41
42
...
47
48
49
 
 
50
51
52
53
...
56
57
58
 
59
 
60
61
0
@@ -4,9 +4,8 @@ require 'active_support/deprecation'
0
 #
0
 # Deprecated as of Rails 1.2.
0
 # All autoloaded objects are now unloaded.
0
-module Reloadable
0
- class << self
0
-
0
+module Reloadable #:nodoc:
0
+ class << self
0
     def included(base) #nodoc:
0
       unless base.ancestors.include?(Reloadable::Subclasses) # Avoid double warning
0
         ActiveSupport::Deprecation.warn "Reloadable has been deprecated and has no effect.", caller
0
@@ -37,7 +36,7 @@ module Reloadable
0
   #
0
   # Deprecated as of Rails 1.2.
0
   # All autoloaded objects are now unloaded.
0
- module Subclasses
0
+ module Subclasses #:nodoc:
0
     def self.included(base) #nodoc:
0
       base.send :include, Reloadable
0
       ActiveSupport::Deprecation.warn "Reloadable::Subclasses has been deprecated and has no effect.", caller
0
@@ -48,8 +47,7 @@ module Reloadable
0
     end
0
   end
0
   
0
- module Deprecated
0
-
0
+ module Deprecated #:nodoc:
0
     def self.included(base)
0
       class << base
0
         define_method(:reloadable?) do
0
@@ -58,7 +56,5 @@ module Reloadable
0
         end
0
       end
0
     end
0
-
0
   end
0
-
0
 end
0
\ No newline at end of file

Comments

    No one has commented yet.