Module: LLT::Helpers::Pluralize

Defined in:
lib/llt/helpers/pluralize.rb

Instance Method Summary collapse

Instance Method Details

#pluralize(count, sg, pl = nil) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/llt/helpers/pluralize.rb', line 4

def pluralize(count, sg, pl = nil)
  if count == 1
    sg
  else
    pl || build_plural(sg)
  end
end