Skip to content

Commit 79b56cd

Browse files
committed
Add Carthage instructions to Readme.
1 parent 5a8deaf commit 79b56cd

File tree

1 file changed

+19
-10
lines changed

1 file changed

+19
-10
lines changed

README.md

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,24 @@ And you're off! Take a look at the public [documentation][docs] and start buildi
2020

2121
**Other Installation Options**
2222

23-
1. **CocoaPods**
24-
25-
Add the following line to your podfile:
26-
27-
pod 'Parse'
28-
29-
Run pod install, and you should now have the latest parse release.
30-
31-
2. **Compiling for yourself**
23+
- **[CocoaPods](https://cocoapods.org)**
24+
25+
Add the following line to your Podfile:
26+
```ruby
27+
pod 'Parse'
28+
```
29+
Run `pod install`, and you should now have the latest parse release.
30+
31+
32+
- **[Carthage](https://github.com/carthage/carthage)**
33+
34+
Add the following line to your Cartfile:
35+
```
36+
github "ParsePlatform/Parse-SDK-iOS-OSX"
37+
```
38+
Run `carthage update`, and you should now have the latest version of Parse SDK in your Carthage folder.
39+
40+
- **Compiling for yourself**
3241

3342
If you want to manually compile the SDK, clone it locally, and run the following commands in the root directory of the repository:
3443

@@ -43,7 +52,7 @@ And you're off! Take a look at the public [documentation][docs] and start buildi
4352

4453
Compiled frameworks will be in 2 archives: `Parse-iOS.zip` and `Parse-OSX.zip` inside the `build/release` folder, and you can link them as you'd please.
4554

46-
3. **Using Parse as a sub-project**
55+
- **Using Parse as a sub-project**
4756

4857
You can also include parse as a subproject inside of your application if you'd prefer, although we do not recommend this, as it will increase your indexing time significantly. To do so, just drag and drop the Parse.xcodeproj file into your workspace. Note that unit tests will be unavailable if you use Parse like this, as OCMock will be unable to be found.
4958

0 commit comments

Comments
 (0)