Sha256: 7ab6560fd3e7209151bd5e0442c64f51ae5047aecf8fde04d32fb7a8b9b0e86f
Contents?: true
Size: 907 Bytes
Versions: 1
Compression:
Stored size: 907 Bytes
Contents
module GitWakaTime # Th class Mapper attr_accessor :commits, :git def initialize(commits: 500, start_at: Date.today) Log.new 'Mapping commits for dependent commits' time = Benchmark.realtime do g = GitWakaTime.config.git project = File.basename(g.dir.path) logs = g.log(commits).since(start_at).until(Date.today) @commits = logs.map do |git_c| next if git_c.author.name != GitWakaTime.config.user_name next if git_c.parents.size > 1 Commit.find_or_create( sha: git_c.sha, project: project ) do |c| c.update( author: git_c.author.name, message: git_c.message, date: git_c.date.utc ) end end.compact end Log.new "Map Completed took #{time}s with #{@commits.size} commits" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gitwakatime-0.4.0 | lib/gitwakatime/mapper.rb |