diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-02-25 23:09:07 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-02-25 23:09:07 +0000 |
commit | 0e37e6678ae7d4687bb5cac30b78e80259250cec (patch) | |
tree | b84c4b8b3c7ff8dd594744924012a741b253f467 | |
parent | 99307b959b1c16ab1dd0400a7398019fe9d5494b (diff) | |
download | rails-0e37e6678ae7d4687bb5cac30b78e80259250cec.tar.gz rails-0e37e6678ae7d4687bb5cac30b78e80259250cec.tar.bz2 rails-0e37e6678ae7d4687bb5cac30b78e80259250cec.zip |
Documentation fixes (closes #3838)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3647 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rwxr-xr-x | activerecord/Rakefile | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/db2_adapter.rb | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/oci_adapter.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 5d146cecdb..f45c506539 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -76,7 +76,7 @@ task :rebuild_postgresql_databases => [:drop_postgresql_databases, :build_postgr Rake::RDocTask.new { |rdoc| rdoc.rdoc_dir = 'doc' rdoc.title = "Active Record -- Object-relation mapping put on rails" - rdoc.options << '--line-numbers --inline-source --accessor cattr_accessor=object' + rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object' rdoc.template = "#{ENV['template']}.rb" if ENV['template'] rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG') rdoc.rdoc_files.include('lib/**/*.rb') diff --git a/activerecord/lib/active_record/connection_adapters/db2_adapter.rb b/activerecord/lib/active_record/connection_adapters/db2_adapter.rb index 888b1a8086..06c13c39ad 100644 --- a/activerecord/lib/active_record/connection_adapters/db2_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/db2_adapter.rb @@ -223,7 +223,7 @@ begin rescue LoadError # DB2 driver is unavailable. module ActiveRecord # :nodoc: - class Base # :nodoc: + class Base def self.db2_connection(config) # :nodoc: # Set up a reasonable error message raise LoadError, "DB2 Libraries could not be loaded." diff --git a/activerecord/lib/active_record/connection_adapters/oci_adapter.rb b/activerecord/lib/active_record/connection_adapters/oci_adapter.rb index 66931a8886..f0b2d0778a 100644 --- a/activerecord/lib/active_record/connection_adapters/oci_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/oci_adapter.rb @@ -620,7 +620,7 @@ begin rescue LoadError # OCI8 driver is unavailable. module ActiveRecord # :nodoc: - class Base # :nodoc: + class Base def self.oci_connection(config) # :nodoc: # Set up a reasonable error message raise LoadError, "Oracle/OCI libraries could not be loaded." |