Guest User

Untitled

a guest
Oct 17th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class CachyThing
  2. def intitialize
  3. @_items = {}
  4. end
  5.  
  6. def method_missing(sym)
  7. # TODO Catch setters
  8. if @_items.include? sym
  9. @_items[sym]
  10. else
  11. @_items[sym] = fetch(sym)
  12. end
  13. end
  14. end
Add Comment
Please, Sign In to add comment