module Rake::TraceOutput
Public Instance Methods
trace_on(out, *strings)
click to toggle source
# File lib/quiet_down_rake.rb, line 5 def trace_on(out, *strings) dont_care = ['Command failed with status (1)', 'See full trace by running task with', 'rake aborted!'] unless(dont_care.any? { |s| strings.join.include?(s) }) the_real_trace_on(out, *strings) end end
Also aliased as: the_real_trace_on