Class: Obst::PackLog
- Inherits:
-
Object
- Object
- Obst::PackLog
- Includes:
- Enumerable
- Defined in:
- lib/obst/pack_log.rb
Defined Under Namespace
Instance Method Summary collapse
- #each(&block) ⇒ Object
-
#initialize(**opts, &block) ⇒ PackLog
constructor
A new instance of PackLog.
Constructor Details
Instance Method Details
#each(&block) ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/obst/pack_log.rb', line 25 def each(&block) current_time = nil renames = {} files_in_one_day = Hash.new{ |files, name| files[name] = Statuses.new } @commits.each do |commit| committed_at = @time_fix.call(commit.committed_at) current_time ||= committed_at if current_time != committed_at block.call(Record.new(current_time, files_in_one_day.dup)) current_time = committed_at files_in_one_day.clear end commit.file_statuses.each do |file_status| renames[file_status.old_name] = file_status.name if file_status.old_name newest_name = renames[file_status.name] || file_status.name files_in_one_day[newest_name] << file_status.status end end block.call(Record.new(current_time, files_in_one_day.dup)) end |