Flowdock
method

value_from_multiparameter_assignment

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: DateTime
value_from_multiparameter_assignment(values_hash) private

No documentation

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

Hide source
# File activemodel/lib/active_model/type/date_time.rb, line 35
      def value_from_multiparameter_assignment(values_hash)
        missing_parameter = (1..3).detect { |key| !values_hash.key?(key) }
        if missing_parameter
          raise ArgumentError, missing_parameter
        end
        super
      end
Register or log in to add new notes.