Emi Matchu
64b1d11faa
This is a transitional gem to help with upgrading from old versions of Rails: it provides a deprecated feature that Rails removed. I audited and I *think* we only used it in one place, and that this one place doesn't even use any of its functionality for styling or scripting? So, begone!
11 lines
534 B
Text
11 lines
534 B
Text
- contributed = contribution.contributed
|
|
%li
|
|
%span.point-value= contribution.point_value
|
|
= t 'contributions.contribution.description_html',
|
|
:user_link => link_to(contribution.user.name,
|
|
user_contributions_path(contribution.user),
|
|
:class => 'username'),
|
|
:contributed_description => contributed_description(contributed)
|
|
.time-ago
|
|
= t 'contributions.contribution.created_at_html',
|
|
:created_at_ago => labeled_time_ago_in_words(contribution.created_at)
|