summaryrefslogtreecommitdiff
path: root/lib/rake/trace_output.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rake/trace_output.rb')
-rw-r--r--lib/rake/trace_output.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/lib/rake/trace_output.rb b/lib/rake/trace_output.rb
deleted file mode 100644
index 396096d4df..0000000000
--- a/lib/rake/trace_output.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-module Rake
- module TraceOutput # :nodoc: all
-
- # Write trace output to output stream +out+.
- #
- # The write is done as a single IO call (to print) to lessen the
- # chance that the trace output is interrupted by other tasks also
- # producing output.
- def trace_on(out, *strings)
- sep = $\ || "\n"
- if strings.empty?
- output = sep
- else
- output = strings.map { |s|
- next if s.nil?
- s =~ /#{sep}$/ ? s : s + sep
- }.join
- end
- out.print(output)
- end
- end
-end