Method: ActiveSupport::TimeWithZone#marshal_load

Defined in:
lib/active_support/time_with_zone.rb

#marshal_load(variables) ⇒ Object



529
530
531
# File 'lib/active_support/time_with_zone.rb', line 529

def marshal_load(variables)
  initialize(variables[0].utc, ::Time.find_zone(variables[1]), variables[2].utc)
end