Skip to content

Instantly share code, notes, and snippets.

@pftg
Last active August 29, 2015 13:56
Show Gist options
  • Save pftg/8917607 to your computer and use it in GitHub Desktop.
Save pftg/8917607 to your computer and use it in GitHub Desktop.
o = Object.new.tap do |o|
o.result
end # => Object.new
o = Object.new.<some method> do |o|
o.result
end # => Object.new.result
o = Object.new
o.result # => Object.new.result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment