From 918db2c5415bf0858e49bc3fd2360076d692e92c Mon Sep 17 00:00:00 2001 From: Francesco Rodriguez Date: Wed, 17 Apr 2013 13:36:27 -0500 Subject: add :nodoc: mark to *Registry classes [ci skip] --- activerecord/lib/active_record/explain_registry.rb | 4 ++-- activerecord/lib/active_record/runtime_registry.rb | 4 ++-- activesupport/lib/active_support/cache/strategy/local_cache.rb | 2 +- 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 ActiveSupport::PerThreadRegistry # 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 ActiveSupport::PerThreadRegistry # 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 -- cgit v1.2.3