aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-12-04 09:04:40 +0100
committerYves Senn <yves.senn@gmail.com>2014-12-04 09:07:56 +0100
commit9e0dab64d8f92248f9d47023debf0d7b375a6800 (patch)
tree40ed3a37d6e4376ca56364bbbab763fa4fa94d41 /activerecord/lib
parentbc7623a500c93421152cbf3a45157392a6204c43 (diff)
downloadrails-9e0dab64d8f92248f9d47023debf0d7b375a6800.tar.gz
rails-9e0dab64d8f92248f9d47023debf0d7b375a6800.tar.bz2
rails-9e0dab64d8f92248f9d47023debf0d7b375a6800.zip
docs, bring back `ActiveRecord::Core` methods in the API. [ci skip]
This `# :nodoc:` had the effect of hiding every method that follows. This meant that the API page for `ActiveRecord::Core` only contained `configurations` and none of the following methods. Furthermore this `# :nodoc:` had no effect on `maintain_test_schema`. Those `mattr_accessor` inside the `included` block are not picked up by rdoc. /cc @zzak
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/core.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb
index c812e7842a..c2d5582f02 100644
--- a/activerecord/lib/active_record/core.rb
+++ b/activerecord/lib/active_record/core.rb
@@ -85,7 +85,6 @@ module ActiveRecord
mattr_accessor :dump_schema_after_migration, instance_writer: false
self.dump_schema_after_migration = true
- # :nodoc:
mattr_accessor :maintain_test_schema, instance_accessor: false
def self.disable_implicit_join_references=(value)