Sha256: 25efc672313cc758ad94eda3a54c7cfdb387e74a713db20918ed0f225ff0376e

Contents?: true

Size: 1.35 KB

Versions: 44

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 an 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

44 entries across 44 versions & 7 rubygems

Version Path
activesupport-6.1.7.10 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.7.9 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.7.8 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.7.7 lib/active_support/core_ext/date_and_time/compatibility.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.7.6 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.7.5 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.7.4 lib/active_support/core_ext/date_and_time/compatibility.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.7.3 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.7.2 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.7.1 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.7 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.6.1 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.6 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.5.1 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.5 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.4.7 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.4.6 lib/active_support/core_ext/date_and_time/compatibility.rb
activesupport-6.1.4.5 lib/active_support/core_ext/date_and_time/compatibility.rb