Skip to content

Instantly share code, notes, and snippets.

@maxjustus
Created May 21, 2012 21:03
Show Gist options
  • Save maxjustus/2764682 to your computer and use it in GitHub Desktop.
Save maxjustus/2764682 to your computer and use it in GitHub Desktop.
Paranoid hashes
module CoreMixins
module ParanoidHash
def[](k)
fetch(k)
end
end
end
class Hash
def paranoid!
extend(CoreMixins::ParanoidHash)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment