class Gem2exe::RunnerBuffer

Public Class Methods

new() click to toggle source
# File lib/gem2exe/runner.rb, line 7
def initialize
  @buffer = []
end

Public Instance Methods

<<(c) click to toggle source
# File lib/gem2exe/runner.rb, line 11
def <<(c)
  @buffer << c
end
method_missing(m, *args, &block) click to toggle source
# File lib/gem2exe/runner.rb, line 19
def method_missing(m, *args, &block)
  to_s.send m, *args, block
end
to_s() click to toggle source
# File lib/gem2exe/runner.rb, line 15
def to_s
  @buffer.join ""
end