Sha256: 3501ec889375b0c87472f16a93706eed0ac1233e6fe89958f4377743473cd918
Contents?: true
Size: 243 Bytes
Versions: 36
Compression:
Stored size: 243 Bytes
Contents
# frozen_string_literal: true require "stringio" class FakeIO def initialize(content) @io = StringIO.new(content) end def string @io.string end def read(*args) @io.read(*args) end def size @io.size end end
Version data entries
36 entries across 36 versions & 3 rubygems