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