class Object

Public Instance Methods

git_summary(date) click to toggle source
# File bin/gitlogged, line 4
def git_summary(date)
  after = date
  before = after.next_day

  output = `git shortlog --before=#{before.to_time.to_i} --after=#{after.to_time.to_i}`
end