CocoaPods/Xcodeproj

View on GitHub
lib/xcodeproj/project/object/swift_package_local_reference.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Xcodeproj
  class Project
    module Object
      # This class represents a local Swift package reference.
      #
      class XCLocalSwiftPackageReference < AbstractObject
        # @!group Attributes

        # @return [String] the repository url this Swift package was installed from.
        #
        attribute :path, String

        # @return [String] the repository path where the package is located relative
        #                  to the Xcode project.
        #
        attribute :relative_path, String

        # @!group AbstractObject Hooks
        #--------------------------------------#

        def ascii_plist_annotation
          " #{isa} \"#{File.basename(display_name)}\" "
        end

        # @return [String] the path of the local Swift package reference.
        #
        def display_name
          return relative_path if relative_path
          super
        end
      end
    end
  end
end