class Rugged::Commit

def time

Returns a Time object

as the +:time+ attribute for +commit.committer+.
The time when this commit was made effective. This is the same value
def time
  @time ||= Time.at(self.epoch_time)
end