Skip to content

Instantly share code, notes, and snippets.

@nicolas-cherel
Created April 28, 2009 12:29
Show Gist options
  • Save nicolas-cherel/103111 to your computer and use it in GitHub Desktop.
Save nicolas-cherel/103111 to your computer and use it in GitHub Desktop.
class Object
def mutate(ifnil = nil)
self == nil ? ifnil : yield(self)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment