Top Level Namespace
Defined Under Namespace
Modules: Npmdc
Instance Method Summary collapse
Instance Method Details
#pluralize(n, singular, plural = nil) ⇒ Object
1 2 3 4 5 6 7 8 9 |
# File 'lib/npmdc/helpers.rb', line 1 def pluralize(n, singular, plural = nil) if n == 1 "1 #{singular}" elsif plural "#{n} #{plural}" else "#{n} #{singular}s" end end |