aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/query_cache.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-06 10:14:58 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-06 10:14:58 +0000
commit17f7f8a091657a2192106668f00e74c6d70c0614 (patch)
treef66793b16c762a1edc2cb5f3c3eefb63099decde /activerecord/lib/active_record/query_cache.rb
parentbde3df2bec99103eeb91c4caaf0483aacadccd92 (diff)
downloadrails-17f7f8a091657a2192106668f00e74c6d70c0614.tar.gz
rails-17f7f8a091657a2192106668f00e74c6d70c0614.tar.bz2
rails-17f7f8a091657a2192106668f00e74c6d70c0614.zip
Made documentation ready for release (AR)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1733 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/query_cache.rb')
-rw-r--r--activerecord/lib/active_record/query_cache.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/query_cache.rb b/activerecord/lib/active_record/query_cache.rb
index 368b08e506..95b4d8c915 100644
--- a/activerecord/lib/active_record/query_cache.rb
+++ b/activerecord/lib/active_record/query_cache.rb
@@ -1,5 +1,5 @@
module ActiveRecord
- class QueryCache
+ class QueryCache #:nodoc:
def initialize(connection)
@connection = connection
@query_cache = {}
@@ -56,7 +56,7 @@ module ActiveRecord
end
end
- class AbstractAdapter
+ class AbstractAdapter #:nodoc:
# Stub method to be able to treat the connection the same whether the query cache has been turned on or not
def clear_query_cache
end