From a470d796972749889a27e2070bbd95346bba45ea Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Sat, 4 Feb 2012 18:38:26 +0530 Subject: Document Integer#ordinal available in PR #2072. Also remove an unasserted line in the tests. --- activesupport/CHANGELOG.md | 2 ++ activesupport/test/core_ext/integer_ext_test.rb | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'activesupport') diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index c929ae0ae5..29109ea64d 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,5 +1,7 @@ ## Rails 4.0.0 (unreleased) ## +* Adds Integer#ordinal to get the ordinal suffix string of an integer. *Tim Gildea* + * AS::Callbacks: `:per_key` option is no longer supported * `AS::Callbacks#define_callbacks`: add `:skip_after_callbacks_if_terminated` option. diff --git a/activesupport/test/core_ext/integer_ext_test.rb b/activesupport/test/core_ext/integer_ext_test.rb index f01629f5c7..41736fb672 100644 --- a/activesupport/test/core_ext/integer_ext_test.rb +++ b/activesupport/test/core_ext/integer_ext_test.rb @@ -26,6 +26,5 @@ class IntegerExtTest < ActiveSupport::TestCase def test_ordinal assert_equal 'st', 1.ordinal assert_equal 'th', 8.ordinal - 1000000000000000000000000000000000000000000000000000000000000000000000.ordinal end end -- cgit v1.2.3