GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/ddollar/rails.git
Fixed documentation for release (AS)

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1735 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Wed Jul 06 03:43:42 -0700 2005
commit  dc8989a42561e395b90b3113c2cd889e39087ec0
tree    8cf0e425735bd79f284cfbd71922c2419abdfa1d
parent  169eb781f1e1440bf8196a50d6b113a82707ed43
...
1
2
3
 
4
5
...
1
2
 
3
4
5
0
@@ -1,5 +1,5 @@
0
 require File.dirname(__FILE__) + '/cgi/escape_skipping_slashes'
0
 
0
-class CGI
0
+class CGI #:nodoc:
0
   extend(ActiveSupport::CoreExtensions::CGI::EscapeSkippingSlashes)
0
 end
...
50
51
52
53
 
54
55
56
...
50
51
52
 
53
54
55
56
0
@@ -50,7 +50,7 @@ end
0
 module ActiveSupport #:nodoc:
0
   module CoreExtensions #:nodoc:
0
     module Hash #:nodoc:
0
- module IndifferentAccess
0
+ module IndifferentAccess #:nodoc:
0
         def with_indifferent_access
0
           HashWithIndifferentAccess.new(self)
0
         end
...
1
 
2
3
4
...
24
25
26
27
28
29
30
 
 
 
 
31
32
33
...
 
1
2
3
4
...
24
25
26
 
 
 
 
27
28
29
30
31
32
33
0
@@ -1,4 +1,4 @@
0
-class MissingSourceFile < LoadError
0
+class MissingSourceFile < LoadError #:nodoc:
0
   attr_reader :path
0
   def initialize(message, path)
0
     super(message)
0
@@ -24,10 +24,10 @@ class MissingSourceFile < LoadError
0
   ]
0
 end
0
 
0
-module ActiveSupport
0
- module CoreExtensions
0
- module LoadErrorExtensions
0
- module LoadErrorClassMethods
0
+module ActiveSupport #:nodoc:
0
+ module CoreExtensions #:nodoc:
0
+ module LoadErrorExtensions #:nodoc:
0
+ module LoadErrorClassMethods #:nodoc:
0
         def new(*args)
0
           (self == LoadError && MissingSourceFile.from_message(args.first)) || super
0
         end
...
1
2
3
 
4
5
6
...
48
49
50
51
 
52
53
54
...
111
112
113
114
 
115
116
117
...
137
138
139
140
 
141
142
143
...
205
206
207
208
 
209
210
211
...
1
2
 
3
4
5
6
...
48
49
50
 
51
52
53
54
...
111
112
113
 
114
115
116
117
...
137
138
139
 
140
141
142
143
...
205
206
207
 
208
209
210
211
0
@@ -1,6 +1,6 @@
0
 require File.dirname(__FILE__) + '/module_attribute_accessors'
0
 
0
-module Dependencies
0
+module Dependencies #:nodoc:
0
   extend self
0
 
0
   @@loaded = [ ]
0
@@ -48,7 +48,7 @@ module Dependencies
0
   # load the relavent files automatically.
0
   #
0
   # Ruby-style modules are supported, as a folder named 'submodule' will load 'submodule.rb' when available.
0
- class LoadingModule < Module
0
+ class LoadingModule < Module #:nodoc:
0
     attr_reader :path
0
     attr_reader :root
0
     
0
@@ -111,7 +111,7 @@ module Dependencies
0
     end
0
   end
0
   
0
- class RootLoadingModule < LoadingModule
0
+ class RootLoadingModule < LoadingModule #:nodoc:
0
     attr_reader :load_paths
0
 
0
     def initialize(*paths)
0
@@ -137,7 +137,7 @@ module Dependencies
0
   end
0
   
0
   # This object defines a path from which Constants can be loaded.
0
- class ConstantLoadPath
0
+ class ConstantLoadPath #:nodoc:
0
     # Create a new load path with the filesystem path
0
     def initialize(root) @root = root end
0
     
0
@@ -205,7 +205,7 @@ class Object #:nodoc:
0
 end
0
 
0
 # Add file-blaming to exceptions
0
-class Exception
0
+class Exception #:nodoc:
0
   def blame_file!(file)
0
     (@blamed_files ||= []).unshift file
0
   end

Comments

    No one has commented yet.