Sha256: 5c6d3ca96a1ef365a7df455172c75aec3ade7a9d8fe50848e3c229d3d9dd0c43
Contents?: true
Size: 1.18 KB
Versions: 2
Compression:
Stored size: 1.18 KB
Contents
# coding: utf-8 # frozen_string_literal: true ############################################ # © Alex Semyonov, 2013—2017, MIT License # # Author: Alex Semyonov <alex@semyonov.us> # ############################################ require 'grit/blame' module Grit class Blame def process_raw_blame(output) lines = [] final = [] info = {} commits = {} # process the output output.split("\n").each do |line| if line[0, 1] == "\t" lines << line[1, line.size] elsif m = /^(\w{40}) (\d+) (\d+)/.match(line) commit_id = m[1] old_lineno = m[2].to_i lineno = m[3].to_i commits[commit_id] = nil unless commits.key?(commit_id) info[lineno] = [commit_id, old_lineno] end end # load all commits in single call @repo.batch(*(commits.keys - ['0' * 40])).each do |commit| commits[commit.id] = commit if commit end # get it together info.sort.each do |lineno, (commit_id, old_lineno)| commit = commits[commit_id] final << BlameLine.new(lineno, old_lineno, commit, lines[lineno - 1]) end @lines = final end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
giteaucrat-0.1.0 | lib/core_ext/grit/blame.rb |
giteaucrat-0.0.8 | lib/core_ext/grit/blame.rb |