class StreamWrapper
Public Class Methods
Source
# File lib/ceedling/stream_wrapper.rb, line 29 def initialize STDOUT.sync STDERR.sync end
Public Instance Methods
Source
# File lib/ceedling/stream_wrapper.rb, line 38 def stderr_puts(string) $stderr.puts(string) end
Source
# File lib/ceedling/stream_wrapper.rb, line 34 def stdout_puts(string) $stdout.puts(string) end