# File lib/rye.rb, line 270
270:     def path
271:       if @tf.nil?
272:         @tf = Tempfile.new basename
273:         @tf.write @result
274:         @tf.close
275:       end
276:       @tf.path
277:     end