Sha256: 68219fb9f82c06f91a10012081c6771e9a060815a475aaf07b4ec56255814a63
Contents?: true
Size: 362 Bytes
Versions: 20
Compression:
Stored size: 362 Bytes
Contents
require "stringio" module Lapidarius class UI def initialize @io = StringIO.new end def say(statement) @io.puts statement end def out @io.string.strip end def clear! @io.reopen("") end # mock method invocked by Gem::UserInteraction module def terminate_interaction(code = 0); end end end
Version data entries
20 entries across 20 versions & 1 rubygems