aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/date_time/conversions.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-03-23 22:01:51 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-03-23 22:01:51 -0700
commite094940c2b5a5163504859efd3a0bcc49c40451e (patch)
tree999fba1608b264fb169da1e5682a5dba9208e29f /activesupport/lib/active_support/core_ext/date_time/conversions.rb
parent0bd668fd8867b01c15f943613707b3c7eb59afff (diff)
downloadrails-e094940c2b5a5163504859efd3a0bcc49c40451e.tar.gz
rails-e094940c2b5a5163504859efd3a0bcc49c40451e.tar.bz2
rails-e094940c2b5a5163504859efd3a0bcc49c40451e.zip
Move Numeric#to_utc_offset_s to TimeZone.seconds_to_utc_offset
Diffstat (limited to 'activesupport/lib/active_support/core_ext/date_time/conversions.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/date_time/conversions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/date_time/conversions.rb b/activesupport/lib/active_support/core_ext/date_time/conversions.rb
index 7c948267b3..f2cc87e119 100644
--- a/activesupport/lib/active_support/core_ext/date_time/conversions.rb
+++ b/activesupport/lib/active_support/core_ext/date_time/conversions.rb
@@ -56,7 +56,7 @@ module ActiveSupport #:nodoc:
# datetime.formatted_offset # => "-06:00"
# datetime.formatted_offset(false) # => "-0600"
def formatted_offset(colon = true, alternate_utc_string = nil)
- utc? && alternate_utc_string || utc_offset.to_utc_offset_s(colon)
+ utc? && alternate_utc_string || TimeZone.seconds_to_utc_offset(utc_offset, colon)
end
# Overrides the default inspect method with a human readable one, e.g., "Mon, 21 Feb 2005 14:30:00 +0000"