Flowdock
method

instantiate_time_object

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: MultiparameterAttribute
instantiate_time_object(set_values) private

No documentation

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

Hide source
# File activerecord/lib/active_record/attribute_assignment.rb, line 134
      def instantiate_time_object(set_values)
        if object.class.send(:create_time_zone_conversion_attribute?, name, column)
          Time.zone.local(*set_values)
        else
          Time.send(object.class.default_timezone, *set_values)
        end
      end
Register or log in to add new notes.