Sha256: bf8e56f7d4e56e742a4399b7357fe4d38e6890f05a24d1fc38f69bf0a4c36d2e

Contents?: true

Size: 868 Bytes

Versions: 30

Compression:

Stored size: 868 Bytes

Contents

require 'active_support/core_ext/time/zones'

class DateTime
  # Returns the simultaneous time in <tt>Time.zone</tt>.
  #
  #   Time.zone = 'Hawaii'             # => 'Hawaii'
  #   DateTime.new(2000).in_time_zone  # => Fri, 31 Dec 1999 14:00:00 HST -10:00
  #
  # This method is similar to Time#localtime, except that it uses <tt>Time.zone</tt>
  # as the local zone instead of the operating system's time zone.
  #
  # You can also pass in a TimeZone instance or string that identifies a TimeZone
  # as an argument, and the conversion will be based on that zone instead of
  # <tt>Time.zone</tt>.
  #
  #   DateTime.new(2000).in_time_zone('Alaska') # => Fri, 31 Dec 1999 15:00:00 AKST -09:00
  def in_time_zone(zone = ::Time.zone)
    if zone
      ActiveSupport::TimeWithZone.new(utc? ? self : getutc, ::Time.find_zone!(zone))
    else
      self
    end
  end
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
activesupport-4.0.13 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.13.rc1 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.11.1 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.12 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.11 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.10 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.10.rc2 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.10.rc1 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.9 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.8 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.7 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.6 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.6.rc3 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.6.rc2 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.6.rc1 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.5 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.4 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.4.rc1 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.3 lib/active_support/core_ext/date_time/zones.rb
activesupport-4.0.2 lib/active_support/core_ext/date_time/zones.rb