Skip to content

Instantly share code, notes, and snippets.

@nkpart
Forked from benhoskings/gist:36955
Created December 17, 2008 06:17
Show Gist options
  • Save nkpart/36957 to your computer and use it in GitHub Desktop.
Save nkpart/36957 to your computer and use it in GitHub Desktop.
def number_to_ordinal num
int = num.to_i
if (10...20) === int
"#{int}th"
else
"#{int}#{%w{ th st nd rd th th th th th th }[int % 10]}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment