git-timecost/lib/timecost/commit.rb
2014-09-24 09:28:17 +02:00

15 lines
186 B
Ruby

module TimeCost
class Commit
attr_accessor :author, :commit, :date, :note
def initialize commit
@commit = commit
@note = nil
@author = nil
@date = nil
end
end
end