Commit 8ac227ba authored by Robert Speicher's avatar Robert Speicher

Fix RepositoryCache backend attr_reader

parent c4732894
# Interface to the Redis-backed cache store used by the Repository model # Interface to the Redis-backed cache store used by the Repository model
class RepositoryCache class RepositoryCache
attr_reader :namespace attr_reader :namespace, :backend
def initialize(namespace, backend = Rails.cache) def initialize(namespace, backend = Rails.cache)
@namespace = namespace @namespace = namespace
...@@ -18,8 +18,4 @@ class RepositoryCache ...@@ -18,8 +18,4 @@ class RepositoryCache
def fetch(key, &block) def fetch(key, &block)
backend.fetch(cache_key(key), &block) backend.fetch(cache_key(key), &block)
end end
private
attr_reader :backend
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment