Module: Pod

Defined in:
lib/cocoapods.rb,
lib/cocoapods/config.rb,
lib/cocoapods/command.rb,
lib/cocoapods/library.rb,
lib/cocoapods/project.rb,
lib/cocoapods/sandbox.rb,
lib/cocoapods/resolver.rb,
lib/cocoapods/installer.rb,
lib/cocoapods/validator.rb,
lib/cocoapods/downloader.rb,
lib/cocoapods/executable.rb,
lib/cocoapods/gem_version.rb,
lib/cocoapods/command/help.rb,
lib/cocoapods/command/list.rb,
lib/cocoapods/command/push.rb,
lib/cocoapods/command/repo.rb,
lib/cocoapods/command/spec.rb,
lib/cocoapods/command/setup.rb,
lib/cocoapods/command/search.rb,
lib/cocoapods/user_interface.rb,
lib/cocoapods/command/project.rb,
lib/cocoapods/sources_manager.rb,
lib/cocoapods/command/outdated.rb,
lib/cocoapods/external_sources.rb,
lib/cocoapods/sandbox/path_list.rb,
lib/cocoapods/generator/xcconfig.rb,
lib/cocoapods/installer/analyzer.rb,
lib/cocoapods/command/podfile_info.rb,
lib/cocoapods/sandbox/file_accessor.rb,
lib/cocoapods/sandbox/headers_store.rb,
lib/cocoapods/generator/dummy_source.rb,
lib/cocoapods/generator/prefix_header.rb,
lib/cocoapods/generator/bridge_support.rb,
lib/cocoapods/hooks/pod_representation.rb,
lib/cocoapods/generator/acknowledgements.rb,
lib/cocoapods/installer/target_installer.rb,
lib/cocoapods/user_interface/error_report.rb,
lib/cocoapods/hooks/library_representation.rb,
lib/cocoapods/hooks/installer_representation.rb,
lib/cocoapods/installer/pod_source_installer.rb,
lib/cocoapods/generator/copy_resources_script.rb,
lib/cocoapods/generator/acknowledgements/plist.rb,
lib/cocoapods/installer/user_project_integrator.rb,
lib/cocoapods/command/inter_process_communication.rb,
lib/cocoapods/generator/acknowledgements/markdown.rb,
lib/cocoapods/generator/target_environment_header.rb,
lib/cocoapods/installer/analyzer/sandbox_analyzer.rb,
lib/cocoapods/installer/file_references_installer.rb,
lib/cocoapods/installer/user_project_integrator/target_integrator.rb

Defined Under Namespace

Modules: CoreUI, Downloader, Executable, ExternalSources, Generator, Hooks, UserInterface Classes: Command, Config, Informative, Installer, Library, PlainInformative, Podfile, Project, Resolver, Sandbox, SourcesManager, Specification, Validator

Helpers collapse

UI =
UserInterface

Constant Summary collapse

CACHE_ROOT =
TODO:

The Installer::PodSourceInstaller and the #ExternalSources classes build and configure the downloader from scratch.

Returns The directory where CocoaPods caches the downloads.

Returns:

  • (Pathname)

    The directory where CocoaPods caches the downloads.

Pathname.new(File.join(ENV['HOME'], 'Library/Caches/CocoaPods'))
MAX_CACHE_SIZE =
TODO:

The Installer::PodSourceInstaller and the #ExternalSources classes build and configure the downloader from scratch.

Returns The maximum size for the cache expressed in Mb.

Returns:

  • (Fixnum)

    The maximum size for the cache expressed in Mb.

500
STATISTICS_CACHE_FILE =

Returns The file to use a cache of the statistics provider.

Returns:

  • (Pathname)

    The file to use a cache of the statistics provider.

CACHE_ROOT + 'statistics.yml'
VERSION =

The version of the cocoapods command line tool.

'0.19.1'