2017-06-04 20:46:37 +00:00
|
|
|
# carthage
|
|
|
|
# A dependency management tool for Cocoa applications (Mac OS X)
|
2017-06-04 14:35:24 +00:00
|
|
|
|
2020-11-22 20:21:48 +00:00
|
|
|
# Download & build the latest version of all dependencies mentioned in Cartfile
|
2017-06-04 20:46:37 +00:00
|
|
|
carthage update
|
2017-06-04 14:35:24 +00:00
|
|
|
|
2020-11-18 16:41:25 +00:00
|
|
|
# Update dependencies, but only build for iOS
|
2017-06-04 20:46:37 +00:00
|
|
|
carthage update --platform ios
|
2017-06-04 14:35:24 +00:00
|
|
|
|
2020-11-18 16:41:25 +00:00
|
|
|
# Update dependencies, but don't build any of them
|
2017-06-04 20:46:37 +00:00
|
|
|
carthage update --no-build
|
2017-06-04 14:35:24 +00:00
|
|
|
|
2020-11-18 16:50:29 +00:00
|
|
|
# Download & rebuild the current version of dependencies (without updating them)
|
2017-06-04 20:46:37 +00:00
|
|
|
carthage bootstrap
|
2017-06-04 14:35:24 +00:00
|
|
|
|
2017-06-04 20:46:37 +00:00
|
|
|
# Rebuild a specific dependency:
|
|
|
|
carthage build dependency
|