git-timecost/lib/timecost/commit.rb

15 lines
186 B
Ruby
Raw Normal View History

2014-09-24 07:28:17 +00:00
module TimeCost
class Commit
attr_accessor :author, :commit, :date, :note
def initialize commit
@commit = commit
@note = nil
@author = nil
@date = nil
end
end
end