Skip to content

Instantly share code, notes, and snippets.

@shekibobo
Created October 3, 2014 17:08
Show Gist options
  • Save shekibobo/bdff99785f6fd8dbd3c3 to your computer and use it in GitHub Desktop.
Save shekibobo/bdff99785f6fd8dbd3c3 to your computer and use it in GitHub Desktop.
Tapp
class Object
def tapp(msg = nil)
tap do |obj|
if msg.nil?
pp obj
elsif obj.respond_to?(msg)
pp obj.send(msg)
else
puts "#{obj} does not respond to #{msg}."
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment