Tengo este código dentro de mi helper clubs_helper.rb:
def link_to_offers_club(club)
text = ‘Offers’
text += " (#{club.offers.pending.count} #{pluralize(‘offer’,
club.offers.pending.count)})" if club.pending_offers?
link_to text,
offers_club_path(club) unless club.nil?
end
Y rails me lanza este error:
undefined method `pluralize’ for 1:Fixnum
¿Cómo puedo usar los helpers de ActionView?