method
ordinal
v7.1.3.2 -
Show latest stable
-
2 notes -
Class: ActiveSupport::Inflector
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2 (0)
- 4.1.8 (0)
- 4.2.1 (0)
- 4.2.7 (0)
- 4.2.9 (0)
- 5.0.0.1 (0)
- 5.1.7 (0)
- 5.2.3 (0)
- 6.0.0 (0)
- 6.1.3.1 (0)
- 6.1.7.7 (0)
- 7.0.0 (0)
- 7.1.3.2 (0)
- 7.1.3.4 (0)
- What's this?
ordinal(number)
public
Register or
log in
to add new notes.
joshuapinter -
December 9, 2017 - (<= v3.2.13)
0 thanks
Getting just the ordinal on Rails 3.
The ordinal method isn’t publicly available in Rails 3 so you can do something like this:
ordinal(1).last(2) #=> "st" ordinal(20).last(2) #=> "th"
joshuapinter -
January 29, 2018 - (<= v3.2.13)
0 thanks
Correction: Getting just the ordinal on Rails 3.
The ordinal method isn’t publicly available in Rails 3 so you can do something like this:
ordinalize(1).last(2) #=> "st" ordinalize(20).last(2) #=> "th"