Class: TempIO

Inherits:
Tempfile
  • Object
show all
Defined in:
lib/rubygems/test_utilities.rb

Overview

A StringIO duck-typed class that uses Tempfile instead of String as the backing store.

This is available when rubygems/test_utilities is required. – This class was added to flush out problems in Rubinius’ IO implementation.

Instance Method Summary collapse

Constructor Details

#initialize(string = '') ⇒ TempIO

Returns a new instance of TempIO.



168
169
170
171
172
173
# File 'lib/rubygems/test_utilities.rb', line 168

def initialize(string = '')
  super "TempIO"
  binmode
  write string
  rewind
end

Instance Method Details

#stringObject



175
176
177
178
# File 'lib/rubygems/test_utilities.rb', line 175

def string
  flush
  Gem.read_binary path
end