Skip to content

Instantly share code, notes, and snippets.

@austinbv
Created November 21, 2011 22:56
Show Gist options
  • Select an option

  • Save austinbv/1384262 to your computer and use it in GitHub Desktop.

Select an option

Save austinbv/1384262 to your computer and use it in GitHub Desktop.
class Integer
def rank
case self % 10
when 1
"#{self}st"
when 2
"#{self}nd"
when 3
"#{self}rd"
when 4..9, 0
"#{self}th"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment