Skip to content

Instantly share code, notes, and snippets.

@daxhuiberts
Forked from roy/gist:822341
Created February 11, 2011 13:49
Show Gist options
  • Save daxhuiberts/822358 to your computer and use it in GitHub Desktop.
Save daxhuiberts/822358 to your computer and use it in GitHub Desktop.
class Object
def tap(method=nil, *params, &block)
raise ArgumentError, "supply either a block or a method name to send" if (method || block) && !(method && block)
block ||= proc { self.send method, *params }
super(&block)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment