class Xcodeproj::Project::ObjectDictionary

def remove_reference(object)


Removes all the references to a given object.
def remove_reference(object)
  each { |key, obj| self[key] = nil if obj == object }
end