Module: ActionView::Helpers::TextHelper
- Defined in:
- lib/pluralize/action_view/helpers/text_helper.rb
Instance Method Summary collapse
Instance Method Details
#pluralize(count, singular, plural = nil) ⇒ Object
4 5 6 |
# File 'lib/pluralize/action_view/helpers/text_helper.rb', line 4 def pluralize(count, singular, plural = nil) "#{count || 0} " + ((count == 1 || count == '1') ? singular : (plural || ActiveSupport::Inflector.pluralize(singular, count))) end |