Class: Integer

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

Instance Method Summary collapse

Instance Method Details

#ordinalizeObject



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

def ordinalize
  {
    1 => "1st",
    2 => "2nd",
    3 => "3rd",
    4 => "4th",
    5 => "5th"
  }[self]
end