aboutsummaryrefslogtreecommitdiffstats
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
parent87fddba98fb9de7c45340ab747ccc0aa29820a88 (diff)
downloadrails-918db2c5415bf0858e49bc3fd2360076d692e92c.tar.gz
rails-918db2c5415bf0858e49bc3fd2360076d692e92c.tar.bz2
rails-918db2c5415bf0858e49bc3fd2360076d692e92c.zip
add :nodoc: mark to *Registry classes [ci skip]
-rw-r--r--activerecord/lib/active_record/explain_registry.rb4
-rw-r--r--activerecord/lib/active_record/runtime_registry.rb4
-rw-r--r--activesupport/lib/active_support/cache/strategy/local_cache.rb2
3 files changed, 5 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/explain_registry.rb b/activerecord/lib/active_record/explain_registry.rb
index b84a692b87..f5cd57e075 100644
--- a/activerecord/lib/active_record/explain_registry.rb
+++ b/activerecord/lib/active_record/explain_registry.rb
@@ -9,7 +9,7 @@ module ActiveRecord
#
# See the documentation of <tt>ActiveSupport::PerThreadRegistry</tt>
# for further details.
- class ExplainRegistry
+ class ExplainRegistry # :nodoc:
extend ActiveSupport::PerThreadRegistry
attr_accessor :queries, :collect
@@ -27,4 +27,4 @@ module ActiveRecord
@queries = []
end
end
-end \ No newline at end of file
+end
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
diff --git a/activesupport/lib/active_support/cache/strategy/local_cache.rb b/activesupport/lib/active_support/cache/strategy/local_cache.rb
index c62afe836c..157053ee4d 100644
--- a/activesupport/lib/active_support/cache/strategy/local_cache.rb
+++ b/activesupport/lib/active_support/cache/strategy/local_cache.rb
@@ -9,7 +9,7 @@ module ActiveSupport
# in-memory cache for faster access.
module LocalCache
# Class for storing and registering the local caches.
- class LocalCacheRegistry
+ class LocalCacheRegistry # :nodoc:
extend ActiveSupport::PerThreadRegistry
def initialize