Class: Fixnum

Inherits:
Object
  • Object
show all
Defined in:
lib/reminders_txt.rb

Instance Method Summary collapse

Instance Method Details

#ordinalObject



15
16
17
# File 'lib/reminders_txt.rb', line 15

def ordinal
  self.to_s + ( (10...20).include?(self) ? 'th' : %w{ th st nd rd th th th th th th }[self % 10] )
end