Skip to content

Instantly share code, notes, and snippets.

@olistik
Created June 22, 2015 11:17
Show Gist options
  • Save olistik/c535f8f631e4405acd1f to your computer and use it in GitHub Desktop.
Save olistik/c535f8f631e4405acd1f to your computer and use it in GitHub Desktop.
This is a monkey patch I frequently find useful when doing functional-ish programming stuff.
class Object
def pat
if block_given?
yield self
else
self
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment