class RHC::StringTee

Attributes

tee[R]

Public Class Methods

new(other) click to toggle source
Calls superclass method
# File lib/rhc/helpers.rb, line 352
def initialize(other)
  @tee = other
  super()
end

Public Instance Methods

<<(buf) click to toggle source
Calls superclass method
# File lib/rhc/helpers.rb, line 356
def <<(buf)
  tee << buf
  super
end