Skip to content

Instantly share code, notes, and snippets.

@kaylarose
Last active December 24, 2015 18:19
Show Gist options
  • Save kaylarose/6842099 to your computer and use it in GitHub Desktop.
Save kaylarose/6842099 to your computer and use it in GitHub Desktop.
Cocoapods Cheatsheet
# Cocoapods Notes
## For XCode 5 Dev Preview on Mavericks
If your dynamic frameworks in the Pods project are getting linked to OSX Frameworks instead of iOS, you can try reverting to an earlier version of Cocoapods (0.24.0)
- This is more of an XCode UI bug, than a real build problem, but at this point in time there is no work around in Cocoapods. Original Source: https://github.com/CocoaPods/CocoaPods/issues/1420#issuecomment-25561488
# Don't clean out the temporary Pods/ project built from the spec
# Helpful for checking Spec references, frameworks, and bundles,
# and Compile-Time logs
# open /tmp/CocoaPods/Lint/Pods/Pods.xcodeproj for instpection
pod spec lint MobileDeposit.podspec --verbose --no-clean
# Generate the Pods project in your working Dir, but DON'T
# integrate the Pods project into your Working Directory Project
# Helpful for checking Spec references, frameworks, and bundles, etc.
pod install --no-integrate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment