Flowdock
method

assign

Importance_0
v1_8_6_287 - Show latest stable - 0 notes - Class: SOAP::Property
assign(ary, value) private

No documentation

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

Hide source
# File lib/soap/property.rb, line 235
  def assign(ary, value)
    ref = self
    hook = NO_HOOK
    ary[0..-2].each do |name|
      key = to_key(name)
      hook += ref.local_hook(key, false)
      ref = ref.deref_key(key)
    end
    last_key = to_key(ary.last)
    ref.local_assign(last_key, value)
    hook + ref.local_hook(last_key, true)
  end
Register or log in to add new notes.