From c10d09d0bdda5daec4a3a64f6d05c3465494a59d Mon Sep 17 00:00:00 2001 From: Jeef Date: Tue, 28 Feb 2017 23:54:20 -0500 Subject: [PATCH] carthage.md: add page (#1278) --- pages/osx/carthage.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pages/osx/carthage.md diff --git a/pages/osx/carthage.md b/pages/osx/carthage.md new file mode 100644 index 0000000000..638afd5140 --- /dev/null +++ b/pages/osx/carthage.md @@ -0,0 +1,23 @@ +# carthage + +> Carthage is a dependency management tool for Cocoa applications. + +- Download and build all dependencies mentioned in Cartfile. Also used to update dependencies to their latest version: + +`carthage update` + +- Update dependencies and only build for iOS: + +`carthage update --platform ios` + +- Update dependencies but don't build: + +`carthage update --no-build` + +- Download and rebuild the current dependency set without updating: + +`carthage bootstrap` + +- Rebuild a specific dependency: + +`carthage build {{dependency}}`