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

git-svn-id: http://svn-commit.rubyonrails.org/rails/branches/stable@3248 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Wed Dec 07 21:43:54 -0800 2005
commit  57e992dc0f0efeaa6b752b575581321b44953339
tree    0f128d1e54b1cf73042309e6ccf2d3e029ab90ad
parent  a9f4205b21d3cca95bd3985e09b84be289983fcf
...
510
511
512
513
 
514
515
516
...
528
529
530
531
 
532
533
534
...
510
511
512
 
513
514
515
516
...
528
529
530
 
531
532
533
534
0
@@ -510,7 +510,7 @@
0
 
0
   # The OCIConnectionFactory factors out the code necessary to connect and
0
   # configure an OCI connection.
0
- class OCIConnectionFactory
0
+ class OCIConnectionFactory #:nodoc:
0
     def new_connection(username, password, host)
0
       conn = OCI8.new username, password, host
0
       conn.exec %q{alter session set nls_date_format = 'YYYY-MM-DD HH24:MI:SS'}
0
@@ -528,7 +528,7 @@
0
   # this would be dangerous (as the earlier part of the implied transaction
0
   # may have failed silently if the connection died) -- so instead the
0
   # connection is marked as dead, to be reconnected on it's next use.
0
- class OCI8AutoRecover < DelegateClass(OCI8)
0
+ class OCI8AutoRecover < DelegateClass(OCI8) #:nodoc:
0
     attr_accessor :active
0
     alias :active? :active
0
 

Comments

    No one has commented yet.