class Xcodeproj::Project::Object::PBXBuildFile


{AbstractBuildPhase}.
Contains the information about the build settings of a file used by an

def display_name

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

def pretty_print

Returns:
  • (Hash{String => Hash}, String) - A hash suitable to display the
def pretty_print
  if settings.nil? || settings.empty?
    display_name
  else
    { display_name => settings }
  end
end