Flowdock
method

read_other

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: MultiparameterAttribute
read_other(klass) 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 172
      def read_other(klass)
        max_position = extract_max_param
        positions    = (1..max_position)
        validate_required_parameters!(positions)

        set_values = values.values_at(*positions)
        klass.new(*set_values)
      end
Register or log in to add new notes.