gitlabhq/lib/commit_ext.rb

24 lines
481 B
Ruby
Raw Normal View History

2011-10-24 21:38:03 +02:00
module CommitExt
2011-10-25 06:32:02 +02:00
def safe_message
message.encode("UTF-8",
:invalid => :replace,
:undef => :replace,
2011-10-25 06:32:02 +02:00
:universal_newline => true,
:replace => "")
rescue
2011-10-24 21:38:03 +02:00
"-- invalid encoding for commit message"
end
2011-10-31 21:57:16 +01: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 21:38:03 +02:00
end