Skip to content

Instantly share code, notes, and snippets.

@ys
Created May 5, 2015 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ys/56462567b9cd146d1a8c to your computer and use it in GitHub Desktop.
Save ys/56462567b9cd146d1a8c to your computer and use it in GitHub Desktop.
class Object
def safe_tap(&block)
tap do |o|
unless o.nil?
block.call(o)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment