From 2a468aa2c831cd8a693feb553608129f8836e7e6 Mon Sep 17 00:00:00 2001 From: Nick Gauthier Date: Thu, 25 Mar 2010 14:38:03 -0400 Subject: [PATCH] changed progress bar text to say "Hydra Testing" --- lib/hydra/listener/progress_bar.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hydra/listener/progress_bar.rb b/lib/hydra/listener/progress_bar.rb index 53c90ec..cae21f9 100644 --- a/lib/hydra/listener/progress_bar.rb +++ b/lib/hydra/listener/progress_bar.rb @@ -33,7 +33,7 @@ module Hydra #:nodoc: width = 30 complete = ((@files_completed.to_f / @total_files.to_f) * width).to_i @output.write "\r" # move to beginning - @output.write 'Progress [' + @output.write 'Hydra Testing [' @output.write @errors ? "\033[1;31m" : "\033[1;32m" complete.times{@output.write '#'} @output.write '>'