Method: Cache#put

Defined in:
lib/cache.rb

#put(stuff) ⇒ Object



18
19
20
21
# File 'lib/cache.rb', line 18

def put(stuff)
  @timestamp = Time.now.utc.to_i
  @contents = stuff
end