View Source GitHelper (LowEndInsight v0.8.1)

Collection of lower-level functions for analyzing outputs from git command.

Link to this section Summary

Functions

get_avg_tag_commit_tim_diff/1: return the average time between commits within each subarray representing a tag
get_contributor_counts/1: Gets the number of contributions belonging to each author and return a map of %{name => number}
det_filtered_contributor_count/2: Gets the resolved list of contributers, return count and list
get_total_tag_commit_time_diff/1: return the total time between commits within each subarray representing a tag
parse_diff/1: returns the relevant information contained in the last array position of a diff array
split_commits_by_tag/1: returns a list with sublists arranged by tag

Link to this section Types

@type contrib_count() :: %{required(String.t()) => integer()}

Link to this section Functions

Link to this function

get_avg_tag_commit_time_diff(list)

View Source
get_avg_tag_commit_tim_diff/1: return the average time between commits within each subarray representing a tag
Link to this function

get_contributor_counts(list)

View Source
get_contributor_counts/1: Gets the number of contributions belonging to each author and return a map of %{name => number}
Link to this function

get_filtered_contributor_count(map, total)

View Source
@spec get_filtered_contributor_count(contrib_count(), non_neg_integer()) ::
  {:ok, non_neg_integer(), [contrib_count()]}
det_filtered_contributor_count/2: Gets the resolved list of contributers, return count and list
Link to this function

get_total_tag_commit_time_diff(list)

View Source
get_total_tag_commit_time_diff/1: return the total time between commits within each subarray representing a tag
@spec parse_diff([String.t()]) ::
  {:ok, non_neg_integer(), non_neg_integer(), non_neg_integer()}
parse_diff/1: returns the relevant information contained in the last array position of a diff array
Link to this function

parse_header(contributor)

View Source
@spec parse_shortlog(String.t()) :: [Contributor.t()]
Link to this function

split_commits_by_tag(list)

View Source
split_commits_by_tag/1: returns a list with sublists arranged by tag