Skip to content

Instantly share code, notes, and snippets.

@kbaribeau
Created October 10, 2014 15:49
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 kbaribeau/4b35d7c19f0405e0c82e to your computer and use it in GitHub Desktop.
Save kbaribeau/4b35d7c19f0405e0c82e to your computer and use it in GitHub Desktop.
tap
def foo
s = "something complicated"
do_other_stuff
s
end
def bar
"something complicated".tap do
do_other_stuff
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment