module CommitHelper def render_commit_stats(stats) res = [""] stats.files.each do |filename, adds, deletes, total| res << "" res << "" res << "" res << "" res << "" end res << "
#{h(filename)}#{total}#{(0...deletes).map{|i| "-" }.join}" res << "#{(0...adds).map{|i| "+" }.join}
" res.join("\n").html_safe end # def format_commit_message(message) # h(message).gsub("\n", "
").html_safe # end def commit_date(date) I18n.localize(date, { :format => "%d %B %Y" }) end def short_hash_id(id) id[0..19] end def shortest_hash_id(id) id[0..8] end def short_commit_message(message) # Why 42? Because it is the Answer! truncate(message, :length => 42, :omission => "...") end end