Method: VirtualBox::SharedFolder.save_relationship

Defined in:
lib/virtualbox/shared_folder.rb

.save_relationship(caller, items) ⇒ Object

Saves the relationship. This simply calls #save on every member of the relationship.

**This method typically won’t be used except internally.**



115
116
117
118
119
# File 'lib/virtualbox/shared_folder.rb', line 115

def save_relationship(caller, items)
  items.dup.each do |item|
    item.save
  end
end