gitlab-org--gitlab-foss/lib/commit_ext.rb

21 lines
326 B
Ruby
Raw Normal View History

2011-10-24 15:38:03 -04:00
module CommitExt
attr_accessor :head
2011-11-12 17:30:51 -05:00
attr_accessor :refs
2011-10-25 00:32:02 -04:00
def safe_message
2011-11-17 21:55:08 -05:00
message.force_encoding(Encoding::UTF_8)
2011-10-24 15:38:03 -04:00
end
2011-10-31 16:57:16 -04:00
def created_at
committed_date
end
def author_email
author.email.force_encoding(Encoding::UTF_8)
end
def author_name
author.name.force_encoding(Encoding::UTF_8)
end
2011-10-24 15:38:03 -04:00
end