module Git::Stats

Constants

VERSION

Public Class Methods

statistic(folder, branch = "develop", options = {}) { |stats| ... } click to toggle source
# File lib/git/stats.rb, line 10
def self.statistic(folder, branch = "develop", options = {})
  stats = Git::Stats::Statistic.statistic(folder, branch, options)
  yield stats if block_given?
end