2017-03-01 07:54:20 +03:00
|
|
|
# carthage
|
|
|
|
|
2017-04-21 19:16:12 +03:00
|
|
|
> A dependency management tool for Cocoa applications.
|
2017-03-01 07:54:20 +03:00
|
|
|
|
2017-04-21 19:16:12 +03:00
|
|
|
- Download the latest version of all dependencies mentioned in Cartfile, and build them:
|
2017-03-01 07:54:20 +03:00
|
|
|
|
|
|
|
`carthage update`
|
|
|
|
|
2017-04-21 19:16:12 +03:00
|
|
|
- Update dependencies, but only build for iOS:
|
2017-03-01 07:54:20 +03:00
|
|
|
|
|
|
|
`carthage update --platform ios`
|
|
|
|
|
2017-04-21 19:16:12 +03:00
|
|
|
- Update dependencies, but don't build any of them:
|
2017-03-01 07:54:20 +03:00
|
|
|
|
|
|
|
`carthage update --no-build`
|
|
|
|
|
2017-04-21 19:16:12 +03:00
|
|
|
- Download and rebuild the current version of dependencies (without updating them):
|
2017-03-01 07:54:20 +03:00
|
|
|
|
|
|
|
`carthage bootstrap`
|
|
|
|
|
|
|
|
- Rebuild a specific dependency:
|
|
|
|
|
|
|
|
`carthage build {{dependency}}`
|