From 4c77245b85695cc36d9486c330fd03a3bae98075 Mon Sep 17 00:00:00 2001 From: Nikita Lutsenko Date: Mon, 24 Aug 2015 12:31:14 -0700 Subject: [PATCH] Update compiling instructions in the readme. --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5553c349c..74e68329e 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,15 @@ And you're off! Take a look at the public [documentation][docs] and start buildi 2. **Compiling for yourself** - If you want to manually compile the SDK, clone it locally, and run the following command in the root directory of the repository: - + If you want to manually compile the SDK, clone it locally, and run the following commands in the root directory of the repository: + + # To pull in extra dependencies (Bolts and OCMock) + git submodule update --init --recursive + + # To install all the gems + bundle install + + # Build & Package the Frameworks rake package:frameworks 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.