using blank?, much shorter

This commit is contained in:
Vanja Radovanović 2012-09-10 17:32:31 +02:00
parent 8d171a8cbc
commit 7e2846fb57
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ class CommitDecorator < ApplicationDecorator
# In case this first line is longer than 80 characters, it is cut off
# after 70 characters and ellipses (`&hellp;`) are appended.
def title
return no_commit_message unless safe_message && !safe_message.strip.empty?
return no_commit_message if safe_message.blank?
title_end = safe_message.index(/\n/)
if (!title_end && safe_message.length > 80) || (title_end && title_end > 80)