class TempIO
A StringIO
duck-typed class that uses Tempfile
instead of String
as the backing store.
This is available when rubygems/test_utilities is required.
Public Class Methods
# File lib/rubygems/test_utilities.rb, line 359 def initialize(string = '') super "TempIO" binmode write string rewind end
Creates a new TempIO
that will be initialized to contain string
.
Calls superclass method
Tempfile::new
Public Instance Methods
Ruby Core © 1993–2020 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.