Class: Numeric

Inherits:
Object show all
Defined in:
lib/lowline.rb

Instance Method Summary collapse

Instance Method Details

#to_pretty_sObject



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

def to_pretty_s
  if self < 20
    %w(no one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen)[self]
  else
    to_s
  end
end