Sha256: c360b3534708831036c2ea165876a66a82a97f2dcd698fc33f585674d685cc45

Contents?: true

Size: 787 Bytes

Versions: 13

Compression:

Stored size: 787 Bytes

Contents

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)
    ActiveSupport::TimeWithZone.new(utc? ? self : getutc, ::Time.__send__(:get_zone, zone))
  end
end

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
csd-0.1.5 lib/active_support/core_ext/date_time/zones.rb
csd-0.1.4 lib/active_support/core_ext/date_time/zones.rb
csd-0.1.3 lib/active_support/core_ext/date_time/zones.rb
csd-0.1.2 lib/active_support/core_ext/date_time/zones.rb
csd-0.1.1 lib/active_support/core_ext/date_time/zones.rb
csd-0.1.0 lib/active_support/core_ext/date_time/zones.rb
csd-0.0.16 lib/active_support/core_ext/date_time/zones.rb
activesupport-3.0.0.beta4 lib/active_support/core_ext/date_time/zones.rb
activesupport-3.0.0.beta3 lib/active_support/core_ext/date_time/zones.rb
activesupport-3.0.0.beta2 lib/active_support/core_ext/date_time/zones.rb
activesupport-3.0.0.beta lib/active_support/core_ext/date_time/zones.rb
activesupport-3.0.pre lib/active_support/core_ext/date_time/zones.rb
recliner-0.0.1 vendor/activesupport/lib/active_support/core_ext/date_time/zones.rb