Class: Sprockets::Cache::GetWrapper

Inherits:
Wrapper
  • Object
show all
Defined in:
lib/sprockets/cache.rb

Instance Method Summary collapse

Instance Method Details

#get(key) ⇒ Object



207
208
209
# File 'lib/sprockets/cache.rb', line 207

def get(key)
  cache.get(key)
end

#set(key, value) ⇒ Object



211
212
213
# File 'lib/sprockets/cache.rb', line 211

def set(key, value)
  cache.set(key, value)
end