Class: Wrest::CacheProxy::NullCacheProxy
- Inherits:
-
Object
- Object
- Wrest::CacheProxy::NullCacheProxy
- Defined in:
- lib/wrest/cache_proxy.rb
Instance Method Summary collapse
- #get ⇒ Object
-
#initialize(get) ⇒ NullCacheProxy
constructor
A new instance of NullCacheProxy.
Constructor Details
#initialize(get) ⇒ NullCacheProxy
Returns a new instance of NullCacheProxy.
15 16 17 |
# File 'lib/wrest/cache_proxy.rb', line 15 def initialize(get) @get = get end |
Instance Method Details
#get ⇒ Object
18 19 20 |
# File 'lib/wrest/cache_proxy.rb', line 18 def get @get.invoke_without_cache_check end |