Sha256: 381b182fd3b24f7bd6845710194c9fb62d2b2118586225cb3404f4f07de52585
Contents?: true
Size: 1.79 KB
Versions: 2
Compression:
Stored size: 1.79 KB
Contents
# frozen_string_literal: true module Git module Lint module Reporters # Reports issues related to a single branch. class Branch include Dependencies[:color] using Refinements::String def initialize(collector: Collector.new, **) super(**) @collector = collector end def to_s "Running Git Lint...#{branch_report}\n" \ "#{commit_total}. #{issue_totals}.\n" end alias to_str to_s private attr_reader :collector def branch_report return "" unless collector.issues? "\n\n#{commit_report}".chomp end def commit_report collector.to_h.reduce "" do |details, (commit, analyzers)| details + Commit.new(commit:, analyzers:) end end def commit_total total = collector.total_commits %(#{total} #{"commit".pluralize "s", total} inspected) end def issue_totals if collector.issues? "#{issue_total} detected (#{warning_total}, #{error_total})" else color["0 issues", :green] + " detected" end end def issue_total style = collector.errors? ? :red : :yellow total = collector.total_issues color["#{total} issue".pluralize("s", total), style] end def warning_total style = collector.warnings? ? :yellow : :green total = collector.total_warnings color["#{total} warning".pluralize("s", total), style] end def error_total style = collector.errors? ? :red : :green total = collector.total_errors color["#{total} error".pluralize("s", total), style] end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
git-lint-9.1.0 | lib/git/lint/reporters/branch.rb |
git-lint-9.0.0 | lib/git/lint/reporters/branch.rb |