Sha256: 4ebc019f225fa29ceea0c0435434458edcf6d27551478dbfa0add6b53e7455d8
Contents?: true
Size: 1.29 KB
Versions: 26
Compression:
Stored size: 1.29 KB
Contents
# frozen_string_literal: true require 'eac_ruby_utils/core_ext' module EacGit class Local class Commit require_sub __FILE__, include_modules: true enable_simple_cache FIELDS = { author_name: '%an', author_email: '%ae', author_date: '%ai', subject: '%s', author_all: '%an <%ae>, %ai', commiter_name: '%cn', commiter_email: '%ce', commiter_date: '%ci', commiter_all: '%cn <%ce>, %ci' }.freeze common_constructor :repo, :hash def format(format) repo.command('--no-pager', 'log', '-1', "--pretty=format:#{format}", hash).execute!.strip end FIELDS.each do |field, format| define_method(field) { format(format) } end def changed_files_uncached diff_tree_execute.each_line.map do |line| ::EacGit::Local::Commit::ChangedFile.new(self, line) end end def changed_files_size_uncached changed_files.inject(0) { |a, e| a + e.dst_size } end def root_child? format('%P').blank? end private def diff_tree_execute args = [] args << '--root' if root_child? args << hash repo.command(*::EacGit::Local::Commit::DiffTreeLine::GIT_COMMAND_ARGS, *args).execute! end end end end
Version data entries
26 entries across 26 versions & 2 rubygems