Method: RHC::Helpers#pluralize
- Defined in:
- lib/rhc/helpers.rb
#pluralize(count, s) ⇒ Object
310 311 312 |
# File 'lib/rhc/helpers.rb', line 310 def pluralize(count, s) count == 1 ? "#{count} #{s}" : "#{count} #{s}s" end |
310 311 312 |
# File 'lib/rhc/helpers.rb', line 310 def pluralize(count, s) count == 1 ? "#{count} #{s}" : "#{count} #{s}s" end |