class RHC::Helpers::StringTee

Attributes

tee[R]

Public Class Methods

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

Public Instance Methods

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