提交 eef20608 编写于 作者: V Vijay Dev

included examples for negative ordinalize

上级 95ec18a0
...@@ -4,10 +4,13 @@ class Integer ...@@ -4,10 +4,13 @@ class Integer
# Ordinalize turns a number into an ordinal string used to denote the # Ordinalize turns a number into an ordinal string used to denote the
# position in an ordered sequence such as 1st, 2nd, 3rd, 4th. # position in an ordered sequence such as 1st, 2nd, 3rd, 4th.
# #
# 1.ordinalize # => "1st" # 1.ordinalize # => "1st"
# 2.ordinalize # => "2nd" # 2.ordinalize # => "2nd"
# 1002.ordinalize # => "1002nd" # 1002.ordinalize # => "1002nd"
# 1003.ordinalize # => "1003rd" # 1003.ordinalize # => "1003rd"
# -11.ordinalize # => "-11th"
# -1001.ordinalize # => "-1001st"
#
def ordinalize def ordinalize
ActiveSupport::Inflector.ordinalize(self) ActiveSupport::Inflector.ordinalize(self)
end end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册