diff options
Diffstat (limited to 'lib/commit_ext.rb')
-rw-r--r-- | lib/commit_ext.rb | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/commit_ext.rb b/lib/commit_ext.rb deleted file mode 100644 index 0e045911843..00000000000 --- a/lib/commit_ext.rb +++ /dev/null @@ -1,20 +0,0 @@ -module CommitExt - attr_accessor :head - attr_accessor :refs - - def safe_message - message.force_encoding(Encoding::UTF_8) - end - - 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 -end |