class IRBRemote::OutputMethod
Public Class Methods
new(output)
click to toggle source
# File lib/irb_remote/output_method.rb, line 3 def initialize(output) @stdout = output end
Public Instance Methods
print(*opts)
click to toggle source
# File lib/irb_remote/output_method.rb, line 7 def print(*opts) @stdout.print(*opts) end