Fix new rubocop warnings
This commit is contained in:
parent
da9efb5c64
commit
17b5395e26
2 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@ module ApplicationHelper
|
|||
end
|
||||
|
||||
def friendly_date_ago(date)
|
||||
tag.span(time_ago_in_words(date, :scope => :'datetime.distance_in_words_ago'), :title => l(date, :format => :friendly))
|
||||
tag.span(time_ago_in_words(date, :scope => :"datetime.distance_in_words_ago"), :title => l(date, :format => :friendly))
|
||||
end
|
||||
|
||||
def body_class
|
||||
|
|
|
@ -12,11 +12,11 @@ module ChangesetsHelper
|
|||
def changeset_details(changeset)
|
||||
if changeset.closed_at > Time.now
|
||||
action = :created
|
||||
time = time_ago_in_words(changeset.created_at, :scope => :'datetime.distance_in_words_ago')
|
||||
time = time_ago_in_words(changeset.created_at, :scope => :"datetime.distance_in_words_ago")
|
||||
title = l(changeset.created_at)
|
||||
else
|
||||
action = :closed
|
||||
time = time_ago_in_words(changeset.closed_at, :scope => :'datetime.distance_in_words_ago')
|
||||
time = time_ago_in_words(changeset.closed_at, :scope => :"datetime.distance_in_words_ago")
|
||||
title = safe_join([t("browse.created"), ": ", l(changeset.created_at), " ".html_safe, t("browse.closed"), ": ", l(changeset.closed_at)])
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue