class Xcodeproj::Project::Object::XCRemoteSwiftPackageReference

This class represents a remote Swift package reference.

Public Instance Methods

ascii_plist_annotation() click to toggle source

@!group AbstractObject Hooks

# File lib/xcodeproj/project/object/swift_package_remote_reference.rb, line 20
def ascii_plist_annotation
  " #{isa} \"#{File.basename(display_name, '.git')}\" "
end
display_name() click to toggle source

@return [String] the name of the remote Swift package reference.

# File lib/xcodeproj/project/object/swift_package_remote_reference.rb, line 26
def display_name
  return repositoryURL if repositoryURL
  super
end