blob: 21291f04d08d109424eef759695887b5ffbb117c [file] [log] [blame]
module Pod
module Hooks
class LibraryRepresentation
# Stores the information of the target installer
#-----------------------------------------------------------------------#
# @return [String] The name of the Pods library.
#
def name
library.name
end
# @return [Array<Dependency>] The dependencies of this library.
#
def dependencies
target_definition.dependencies
end
# @return [Pathname] The path of the Pods dir.
#
def sandbox_dir
sandbox.root
end
# @return [Pathname] The path of the prefix_header
#
def prefix_header_path
UI.warn 'LibraryRepresentation#prefix_header_path is deprecated. ' \
'Use the specification `prefix_header_contents` attribute.'
library.prefix_header_path
end
alias_method :prefix_header_filename, :prefix_header_path
# @return [Pathname] The path of the script used to copy the resources.
#
def copy_resources_script_path
library.copy_resources_script_path
end
# @return [Project] The Pods project of the sandbox.
#
def project
sandbox.project
end
# @return [TargetDefinition] The target definition of the library.
#
def target_definition
library.target_definition
end
#-----------------------------------------------------------------------#
public
# @!group Unsafe Hooks API
# @return [Sandbox] sandbox the sandbox where the support files should
# be generated.
#
attr_reader :sandbox
# @return [Library] The library whose target needs to be generated.
#
attr_reader :library
# @return [PBXNativeTarget] The target generated by the installation
# process.
#
def target
library.target
end
#-----------------------------------------------------------------------#
# @!group Private implementation
# @param [Sandbox] sandbox @see sandbox
# @param [Library] library @see library
#
def initialize(sandbox, library)
@sandbox = sandbox
@library = library
raise '[BUG]' unless library.is_a?(AggregateTarget)
end
#-----------------------------------------------------------------------#
end
end
end