class Purdytest::IO

Constants

COLORS

Public Instance Methods

method_missing(msg, *args) click to toggle source
Calls superclass method
# File lib/purdytest.rb, line 33
def method_missing msg, *args
  return super unless io.respond_to?(msg)
  io.send(msg, *args)
end
print(o) click to toggle source