Class: Time

Overview

:nodoc:

Constant Summary

Constants included from PassiveSupport::CoreExtensions::Time::Conversions

PassiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS

Constants included from PassiveSupport::CoreExtensions::Time::Calculations

PassiveSupport::CoreExtensions::Time::Calculations::COMMON_YEAR_DAYS_IN_MONTH

Class Method Summary collapse

Instance Method Summary collapse

Methods included from PassiveSupport::CoreExtensions::Time::Zones

#in_time_zone, included

Methods included from PassiveSupport::CoreExtensions::Time::Conversions

#formatted_offset, included, #to_date, #to_datetime, #to_formatted_s, #to_time

Methods included from PassiveSupport::CoreExtensions::Time::Calculations

#advance, #ago, #beginning_of_day, #beginning_of_month, #beginning_of_quarter, #beginning_of_week, #beginning_of_year, #change, #compare_with_coercion, #end_of_day, #end_of_month, #end_of_quarter, #end_of_week, #end_of_year, #future?, included, #last_month, #last_year, #minus_with_coercion, #minus_with_duration, #months_ago, #months_since, #next_month, #next_week, #next_year, #past?, #plus_with_duration, #prev_month, #prev_year, #seconds_since_midnight, #since, #today?, #tomorrow, #years_ago, #years_since, #yesterday

Methods included from PassiveSupport::CoreExtensions::Time::Behavior

#acts_like_time?

Class Method Details

._load(marshaled_time) ⇒ Object



16
17
18
19
20
21
22
23
24
# File 'lib/passive_support/core_ext/time.rb', line 16

def _load(marshaled_time)
  time = _original_load(marshaled_time)
  time.instance_eval do
    if defined?(@marshal_with_utc_coercion)
      val = remove_instance_variable("@marshal_with_utc_coercion")
    end
    val ? utc : self
  end
end

._original_loadObject



15
# File 'lib/passive_support/core_ext/time.rb', line 15

alias_method :_original_load, :_load

Instance Method Details

#_dump(*args) ⇒ Object



28
29
30
31
32
# File 'lib/passive_support/core_ext/time.rb', line 28

def _dump(*args)
  obj = dup
  obj.instance_variable_set('@marshal_with_utc_coercion', utc?)
  obj._original_dump(*args)
end

#_original_dumpObject



27
# File 'lib/passive_support/core_ext/time.rb', line 27

alias_method :_original_dump, :_dump