Guest User

Untitled

a guest
Feb 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class << self
  2. def find(code)
  3. @@CACHE ||= {}
  4. return @@CACHE[code] if @@CACHE.include?(code)
  5. @@CACHE[code] = super(code)
  6. end
  7. end
Add Comment
Please, Sign In to add comment