Sha256: 680ea4e3dee2d70470fe3457676f1902da863858fbf5b93f2fffd0d187ad3251

Contents?: true

Size: 1.35 KB

Versions: 12

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true

require "active_support/core_ext/module/attribute_accessors"

module DateAndTime
  module Compatibility
    # If true, +to_time+ preserves the timezone offset of receiver.
    #
    # NOTE: With Ruby 2.4+ the default for +to_time+ changed from
    # converting to the local system time, to preserving the offset
    # of the receiver. For backwards compatibility we're overriding
    # this behavior, but new apps will have an initializer that sets
    # this to true, because the new behavior is preferred.
    mattr_accessor :preserve_timezone, instance_writer: false, default: false

    # Change the output of <tt>ActiveSupport::TimeZone.utc_to_local</tt>.
    #
    # When `true`, it returns local times with a UTC offset, with `false` local
    # times are returned as UTC.
    #
    #   # Given this zone:
    #   zone = ActiveSupport::TimeZone["Eastern Time (US & Canada)"]
    #
    #   # With `utc_to_local_returns_utc_offset_times = false`, local time is converted to UTC:
    #   zone.utc_to_local(Time.utc(2000, 1)) # => 1999-12-31 19:00:00 UTC
    #
    #   # With `utc_to_local_returns_utc_offset_times = true`, local time is returned with UTC offset:
    #   zone.utc_to_local(Time.utc(2000, 1)) # => 1999-12-31 19:00:00 -0500
    mattr_accessor :utc_to_local_returns_utc_offset_times, instance_writer: false, default: false
  end
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/core_ext/date_and_time/compatibility.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-7.0.2.3/lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-7.0.2.4 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-7.0.2.3 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-7.0.2.2 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-7.0.2.1 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-7.0.2 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-7.0.1 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-7.0.0 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-7.0.0.rc3 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-7.0.0.rc2 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-7.0.0.rc1 lib/active_support/core_ext/date_and_time/compatibility.rb