class RHC::Helpers::StringTee

Attributes

tee[R]

Public Class Methods

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

Public Instance Methods

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