Flowdock
method

_load

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: Time
_load(marshaled_time) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_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
Register or log in to add new notes.