summaryrefslogtreecommitdiff
path: root/lib/rdoc/stats/normal.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/stats/normal.rb')
-rw-r--r--lib/rdoc/stats/normal.rb21
1 files changed, 11 insertions, 10 deletions
diff --git a/lib/rdoc/stats/normal.rb b/lib/rdoc/stats/normal.rb
index c971973bf1..02714c526b 100644
--- a/lib/rdoc/stats/normal.rb
+++ b/lib/rdoc/stats/normal.rb
@@ -5,15 +5,13 @@
class RDoc::Stats::Normal < RDoc::Stats::Quiet
def begin_adding # :nodoc:
- puts "Parsing sources..." if $stdout.tty?
+ puts "Parsing sources..."
end
##
# Prints a file with a progress bar
def print_file files_so_far, filename
- return unless $stdout.tty?
-
progress_bar = sprintf("%3d%% [%2d/%2d] ",
100 * files_so_far / @num_files,
files_so_far,
@@ -30,18 +28,21 @@ class RDoc::Stats::Normal < RDoc::Stats::Quiet
filename[0..2] = "..."
end
- # Pad the line with whitespaces so that leftover output from the
- # previous line doesn't show up.
line = "#{progress_bar}#{filename}"
- padding = terminal_width - line.size
- line << (" " * padding) if padding > 0
-
- $stdout.print("#{line}\r")
+ if $stdout.tty?
+ # Pad the line with whitespaces so that leftover output from the
+ # previous line doesn't show up.
+ padding = terminal_width - line.size
+ line << (" " * padding) if padding > 0
+ $stdout.print("#{line}\r")
+ else
+ $stdout.puts(line)
+ end
$stdout.flush
end
def done_adding # :nodoc:
- puts if $stdout.tty?
+ puts
end
end