lib/rake/funnel/integration/sync_output.rb in rake-funnel-0.3.2.pre vs lib/rake/funnel/integration/sync_output.rb in rake-funnel-0.4.0.pre
- old
+ new
@@ -1,8 +1,12 @@
-module Rake::Funnel::Integration
- class SyncOutput
- def initialize
- $stdout.sync = true
- $stderr.sync = true
- end
- end
-end
+module Rake
+ module Funnel
+ module Integration
+ class SyncOutput
+ def initialize
+ $stdout.sync = true
+ $stderr.sync = true
+ end
+ end
+ end
+ end
+end