class Xcodeproj::Project::Object::PBXReferenceProxy


This class is used for referencing the products of another project.
project contained in the same workspace of the project document.
Apparently a proxy for a reference object which might belong another

def ascii_plist_annotation

def ascii_plist_annotation
  " #{name || path && File.basename(path)} "
end

def display_name

Returns:
  • (String) - A name suitable for displaying the object to the
def display_name
  return name if name
  return path if path
  super
end

def proxy?

Returns:
  • (Bool) - always true for this ISA.
def proxy?
  true
end