class RHC::StringTee
Attributes
tee[R]
Public Class Methods
new(other)
click to toggle source
Calls superclass method
# File lib/rhc/helpers.rb, line 398 def initialize(other) @tee = other super() end
Public Instance Methods
<<(buf)
click to toggle source
Calls superclass method
# File lib/rhc/helpers.rb, line 402 def <<(buf) tee << buf super end