public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Search Repo:
Fixed docs

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4081 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Mon Mar 27 19:31:01 -0800 2006
commit  218406570d9ee0ce6880552540e08749d5f389ab
tree    6858270b654c8b14a7c81c34039db2f7c56623cc
parent  c4590d577c17ef8797ac620444d42c9ea7806d47
...
29
30
31
32
 
33
34
35
...
29
30
31
 
32
33
34
35
0
@@ -29,7 +29,7 @@
0
 Rake::RDocTask.new { |rdoc|
0
   rdoc.rdoc_dir = 'doc'
0
   rdoc.title = "Active Support -- Utility classes and standard library extensions from Rails"
0
- rdoc.options << '--line-numbers' << '--inline-source' << '--main README'
0
+ rdoc.options << '--line-numbers' << '--inline-source''
0
   rdoc.template = "#{ENV['template']}.rb" if ENV['template']
0
   rdoc.rdoc_files.include('README', 'CHANGELOG')
0
   rdoc.rdoc_files.include('lib/active_support.rb')
...
2
3
4
5
 
 
6
7
8
9
 
10
11
12
...
2
3
4
 
5
6
7
8
9
 
10
11
12
13
0
@@ -2,11 +2,12 @@
0
 
0
 module ActiveSupport
0
   module JSON #:nodoc:
0
- class CircularReferenceError < StandardError; end
0
+ class CircularReferenceError < StandardError #:nodoc:
0
+ end
0
     # returns the literal string as its JSON encoded form. Useful for passing javascript variables into functions.
0
     #
0
     # page.call 'Element.show', ActiveSupport::JSON::Variable.new("$$(#items li)")
0
- class Variable < String
0
+ class Variable < String #:nodoc:
0
       def to_json
0
         self
0
       end
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 module ActiveSupport
0
   module JSON #:nodoc:
0
- module Encoders
0
+ module Encoders #:nodoc:
0
       define_encoder Object do |object|
0
         object.instance_values.to_json
0
       end

Comments

    No one has commented yet.