Class: Rake::ThreadHistoryDisplay
- Inherits:
-
Object
- Object
- Rake::ThreadHistoryDisplay
- Includes:
- PrivateReader
- Defined in:
- lib/rake/thread_history_display.rb
Overview
:nodoc: all
Instance Method Summary collapse
-
#initialize(stats) ⇒ ThreadHistoryDisplay
constructor
A new instance of ThreadHistoryDisplay.
- #show ⇒ Object
Methods included from PrivateReader
Constructor Details
#initialize(stats) ⇒ ThreadHistoryDisplay
Returns a new instance of ThreadHistoryDisplay.
10 11 12 13 14 |
# File 'lib/rake/thread_history_display.rb', line 10 def initialize(stats) @stats = stats @items = { :_seq_ => 1 } @threads = { :_seq_ => "A" } end |
Instance Method Details
#show ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/rake/thread_history_display.rb', line 16 def show puts "Job History:" stats.each do |stat| stat[:data] ||= {} rename(stat, :thread, threads) rename(stat[:data], :item_id, items) rename(stat[:data], :new_thread, threads) rename(stat[:data], :deleted_thread, threads) printf("%8d %2s %-20s %s\n", (stat[:time] * 1_000_000).round, stat[:thread], stat[:event], stat[:data].map { |k,v| "#{k}:#{v}" }.join(" ")) end end |