Sha256: 193ca8fc1f0ffd6f4d4b32cd11445dd8885ad12269cfa5521fd2b16142c8bd9d
Contents?: true
Size: 359 Bytes
Versions: 9
Compression:
Stored size: 359 Bytes
Contents
module Rake module Funnel module Integration class SyncOutput def initialize sync($stdout) sync($stderr) end private def sync(stream) stream.sync = true rescue => e Rake.rake_output_message "Failed to set up sync output #{e}" end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems