gitlabhq/app/models/commit.rb

44 lines
570 B
Ruby
Raw Normal View History

2011-11-20 21:32:12 +01:00
class Commit
include Utils::CharEncode
2011-11-27 16:35:49 +01:00
attr_accessor :commit
attr_accessor :head
delegate :message,
:committed_date,
:parents,
:sha,
:date,
:author,
:message,
:diffs,
:tree,
:id,
:to => :commit
def initialize(raw_commit, head = nil)
@commit = raw_commit
@head = head
end
def safe_message
encode(message)
2011-11-27 16:35:49 +01:00
end
def created_at
committed_date
end
def author_email
encode(author.email)
2011-11-27 16:35:49 +01:00
end
def author_name
encode(author.name)
2011-11-27 16:35:49 +01:00
end
2011-11-29 19:06:37 +01:00
def prev_commit
parents.first
end
2011-11-20 21:32:12 +01:00
end