class Rake::Funnel::Integration::SyncOutput

Public Class Methods

new() click to toggle source
# File lib/rake/funnel/integration/sync_output.rb, line 7
def initialize
  sync($stdout)
  sync($stderr)
end

Private Instance Methods

sync(stream) click to toggle source
# File lib/rake/funnel/integration/sync_output.rb, line 14
def sync(stream)
  stream.sync = true
rescue => e
  $stderr.print "Failed to set up sync output #{e}\n"
end