aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorGeoff Buesing <gbuesing@gmail.com>2008-01-12 20:44:31 +0000
committerGeoff Buesing <gbuesing@gmail.com>2008-01-12 20:44:31 +0000
commite9dad7496d8249a1487a471978d316a4360627d1 (patch)
treed2a5d46d102576aa985ae3eb02a04b69f0b9d697 /activesupport/CHANGELOG
parent7501451d7f417a304a56ac65f0b203c942920732 (diff)
downloadrails-e9dad7496d8249a1487a471978d316a4360627d1.tar.gz
rails-e9dad7496d8249a1487a471978d316a4360627d1.tar.bz2
rails-e9dad7496d8249a1487a471978d316a4360627d1.zip
Refactor number-to-HH:MM-string conversion logic from TimeZone#formatted_offset to reusable Numeric#to_utc_offset_s method
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8635 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index a4a605c782..bf32a00f2b 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Refactor number-to-HH:MM-string conversion logic from TimeZone#formatted_offset to a reusable Numeric#to_utc_offset_s method. [Geoff Buesing]
+
* Continue evolution toward ActiveSupport::TestCase. #10679 [Josh Peek]
* TestCase: introduce declared setup and teardown callbacks. Pass a list of methods and an optional block to call before setup or after teardown. Setup callbacks are run in the order declared; teardown callbacks are run in reverse. [Jeremy Kemper]