diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-09-20 06:34:55 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-09-20 06:34:55 -0700 |
commit | 883fa8f938731e43182a803bedc89fd503a76306 (patch) | |
tree | eb179899a762d40d2e44351f5aa4063a5f2eebe0 | |
parent | 2068d300917ed95a82e7377ee77b397fc4084a61 (diff) | |
parent | 105cb3d9e3cd523c00262826cd541cb10e05aa0a (diff) | |
download | rails-883fa8f938731e43182a803bedc89fd503a76306.tar.gz rails-883fa8f938731e43182a803bedc89fd503a76306.tar.bz2 rails-883fa8f938731e43182a803bedc89fd503a76306.zip |
Merge pull request #7703 from kennyj/fix_6962
Fix #6962. AS::TimeWithZone#strftime responds incorrectly to %:z and %::z format strings.
-rw-r--r-- | activesupport/lib/active_support/time_with_zone.rb | 5 | ||||
-rw-r--r-- | activesupport/test/time_zone_test.rb | 8 |
2 files changed, 12 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/time_with_zone.rb b/activesupport/lib/active_support/time_with_zone.rb index 93c2d614f5..8c8f998f21 100644 --- a/activesupport/lib/active_support/time_with_zone.rb +++ b/activesupport/lib/active_support/time_with_zone.rb @@ -168,7 +168,10 @@ module ActiveSupport # Replaces <tt>%Z</tt> and <tt>%z</tt> directives with +zone+ and +formatted_offset+, respectively, before passing to # Time#strftime, so that zone information is correct def strftime(format) - format = format.gsub('%Z', zone).gsub('%z', formatted_offset(false)) + format = format.gsub('%Z', zone) + .gsub('%z', formatted_offset(false)) + .gsub('%:z', formatted_offset(true)) + .gsub('%::z', formatted_offset(true) + ":00") time.strftime(format) end diff --git a/activesupport/test/time_zone_test.rb b/activesupport/test/time_zone_test.rb index b9434489bb..bfd6863e40 100644 --- a/activesupport/test/time_zone_test.rb +++ b/activesupport/test/time_zone_test.rb @@ -258,6 +258,14 @@ class TimeZoneTest < ActiveSupport::TestCase assert_equal "-0500", zone.formatted_offset(false) end + def test_z_format_strings + zone = ActiveSupport::TimeZone['Tokyo'] + twz = zone.now + assert_equal '+0900', twz.strftime('%z') + assert_equal '+09:00', twz.strftime('%:z') + assert_equal '+09:00:00', twz.strftime('%::z') + end + def test_formatted_offset_zero zone = ActiveSupport::TimeZone['London'] assert_equal "+00:00", zone.formatted_offset |