Skip to content

Instantly share code, notes, and snippets.

@dlisboa
Last active December 30, 2015 22:38
Show Gist options
  • Save dlisboa/7895174 to your computer and use it in GitHub Desktop.
Save dlisboa/7895174 to your computer and use it in GitHub Desktop.
File.open("foo", "w+") {|f| f.puts "bar"}
File.open("foo", "w+") {|f| f.read } #=> queria "bar", mas retorna ""
# API que eu quero
resolver.with_file do |file|
file.write 'bar'
end # => 3
resolver.with_file do |file|
file.read
end # => "bar"
#---
resolver.with_file do |_, file|
file.write 'bar'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment