System Grab Bag

View all TLDR pages from Mac OS X (or from all pages)

pod

Dependency manager for Swift and Objective-C Cocoa projects. More information: https://guides.cocoapods.org/terminal/commands.html.
  • Create a Podfile for the current project with the default contents:
    pod init
  • Download and install all pods defined in the Podfile (that haven't been installed before):
    pod install
  • List all available pods:
    pod list
  • Show the outdated pods (of those currently installed):
    pod outdated
  • Update all currently installed pods to their newest version:
    pod update
  • Update a specific (previously installed) pod to its newest version:
    pod update {{pod_name}}
  • Remove CocoaPods from a Xcode project:
    pod deintegrate {{xcode_project}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.