Scott Jespersen

Results 1 issues of Scott Jespersen

Here's a quick script to reproduce the issue: ``` ruby require 'tempfile' require 'psych' class Foo def initialize @tf = Tempfile.new('foo') end end f = Foo.new puts f.to_yaml ``` Then...