This method is deprecated or moved on the latest stable version.
The last existing version (v1_8_7_330) is shown here.
finalize_all_dependency(id, dependant)
public
finalize all dependants connected by dependency R_*(obj, dependtant)
# File lib/finalize.rb, line 128
def finalize_all_dependency(id, dependant)
id = id.object_id unless id.kind_of?(Integer)
method = method.intern unless method.kind_of?(Integer)
for assoc in @dependency[id]
assoc.delete_if do
|d, m, *o|
d.send(m, id, *o) if ret = d == dependant
end
@dependency.delete(id) if assoc.empty?
end
end