Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • rubygems/test_utilities.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

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

new(string = '') click to toggle source
 
               # File rubygems/test_utilities.rb, line 171
def initialize(string = '')
  super "TempIO"
  binmode
  write string
  rewind
end
            

Public Instance Methods

string() click to toggle source
 
               # File rubygems/test_utilities.rb, line 178
def string
  flush
  Gem.read_binary path
end