Class: Gem::StreamUI::SimpleProgressReporter

Inherits:
Object
  • Object
show all
Includes:
DefaultUserInteraction
Defined in:
lib/rubygems/user_interaction.rb

Overview

A basic dotted progress reporter.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from DefaultUserInteraction

ui, #ui, ui=, #ui=, use_ui, #use_ui

Constructor Details

#initialize(out_stream, size, initial_message, terminal_message = "complete") ⇒ SimpleProgressReporter

Creates a new progress reporter that will write to out_stream for size items. Shows the given initial_message when progress starts and the terminal_message when it is complete.



460
461
462
463
464
465
466
467
468
# File 'lib/rubygems/user_interaction.rb', line 460

def initialize(out_stream, size, initial_message,
               terminal_message = "complete")
  @out = out_stream
  @total = size
  @count = 0
  @terminal_message = terminal_message

  @out.puts initial_message
end

Instance Attribute Details

#countObject (readonly)

The number of progress items counted so far.



453
454
455
# File 'lib/rubygems/user_interaction.rb', line 453

def count
  @count
end

Instance Method Details

#doneObject

Prints out the terminal message.



482
483
484
# File 'lib/rubygems/user_interaction.rb', line 482

def done
  @out.puts "\n#{@terminal_message}"
end

#updated(message) ⇒ Object

Prints out a dot and ignores message.



473
474
475
476
477
# File 'lib/rubygems/user_interaction.rb', line 473

def updated(message)
  @count += 1
  @out.print "."
  @out.flush
end