Skip to content

Instantly share code, notes, and snippets.

@quirkey
Created January 13, 2009 19:45
Show Gist options
  • Select an option

  • Save quirkey/46590 to your computer and use it in GitHub Desktop.

Select an option

Save quirkey/46590 to your computer and use it in GitHub Desktop.
def i_can_delete_your_time(hash)
hash.delete(:time)
end
h = {:time => 'i need this'}
h #=> {:time => 'i need this'}
i_can_delete_your_time(h)
h #=> {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment