summaryrefslogtreecommitdiff
path: root/app/models/commit.rb
blob: 0884e34225cd0d58a0d2787877c6e443459436ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
class Commit
  include Utils::CharEncode

  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)
  end

  def created_at
    committed_date
  end

  def author_email
    encode(author.email)
  end

  def author_name
    encode(author.name)
  end
end