aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/runtime_registry.rb
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-17 13:36:27 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-17 13:36:27 -0500
commit918db2c5415bf0858e49bc3fd2360076d692e92c (patch)
tree3da1a49669f495289c9e98c48ae4199deb479857 /activerecord/lib/active_record/runtime_registry.rb
parent87fddba98fb9de7c45340ab747ccc0aa29820a88 (diff)
downloadrails-918db2c5415bf0858e49bc3fd2360076d692e92c.tar.gz
rails-918db2c5415bf0858e49bc3fd2360076d692e92c.tar.bz2
rails-918db2c5415bf0858e49bc3fd2360076d692e92c.zip
add :nodoc: mark to *Registry classes [ci skip]
Diffstat (limited to 'activerecord/lib/active_record/runtime_registry.rb')
-rw-r--r--activerecord/lib/active_record/runtime_registry.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/runtime_registry.rb b/activerecord/lib/active_record/runtime_registry.rb
index 17890dd29f..63e6738622 100644
--- a/activerecord/lib/active_record/runtime_registry.rb
+++ b/activerecord/lib/active_record/runtime_registry.rb
@@ -1,7 +1,7 @@
require 'active_support/per_thread_registry'
module ActiveRecord
- # This is a thread locals registry for Active Record. For example
+ # This is a thread locals registry for Active Record. For example:
#
# ActiveRecord::RuntimeRegistry.connection_handler
#
@@ -9,7 +9,7 @@ module ActiveRecord
#
# See the documentation of <tt>ActiveSupport::PerThreadRegistry</tt>
# for further details.
- class RuntimeRegistry
+ class RuntimeRegistry # :nodoc:
extend ActiveSupport::PerThreadRegistry
attr_accessor :connection_handler, :sql_runtime, :connection_id