Skip to content

Instantly share code, notes, and snippets.

@jodell
Created April 30, 2012 19:34
Show Gist options
  • Save jodell/2561924 to your computer and use it in GitHub Desktop.
Save jodell/2561924 to your computer and use it in GitHub Desktop.
let & tap reminders
# Reminder:
class Object
def let
yield self
end
end
class Object
def tap
yield self
self
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment