You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run `carthage update`, and you should now have the latest version of Parse SDK in your Carthage folder.
59
+
Add the following line to your Cartfile:
60
+
```
61
+
github "parse-community/Parse-SDK-iOS-OSX"
62
+
```
63
+
Run `carthage update`, and you should now have the latest version of Parse SDK in your Carthage folder.
63
64
64
-
This will also compile the ParseTwitterUtils, ParseFacebookUtilsV4 as well as ParseUI frameworks.
65
+
This will also compile the ParseTwitterUtils, ParseFacebookUtilsV4 as well as ParseUI frameworks.
65
66
66
67
#### Compiling for yourself
67
68
68
-
If you want to manually compile the SDK, clone it locally, and run the following commands in the root directory of the repository:
69
+
If you want to manually compile the SDK, clone it locally, and run the following commands in the root directory of the repository:
69
70
70
-
# To pull in extra dependencies (Bolts and OCMock)
71
-
git submodule update --init --recursive
71
+
```
72
+
# To pull in extra dependencies (Bolts and OCMock)
73
+
git submodule update --init --recursive
72
74
73
-
# To install bundler
74
-
gem install bundler
75
+
# To install bundler
76
+
gem install bundler
75
77
76
-
# To install all the gems via bundler
77
-
bundle install
78
+
# To install all the gems via bundler
79
+
bundle install
78
80
79
-
# Build & Package the Frameworks
80
-
bundle exec rake package:frameworks
81
+
# Build & Package the Frameworks
82
+
bundle exec rake package:frameworks
83
+
```
81
84
82
-
Compiled frameworks will be in multiple archives inside the `build/release` folder:
83
-
- `Parse-iOS.zip`
84
-
- `Parse-macOS.zip`
85
-
- `Parse-tvOS.zip`
86
-
- `Parse-watchOS.zip`
87
-
- `ParseFacebookUtils-iOS.zip`
88
-
- `ParseFacebookUtils-tvOS.zip`
89
-
- `ParseTwitterUtils-iOS.zip`
90
-
- `ParseUI.zip`
85
+
Compiled frameworks will be in multiple archives inside the `build/release` folder:
86
+
-`Parse-iOS.zip`
87
+
-`Parse-macOS.zip`
88
+
-`Parse-tvOS.zip`
89
+
-`Parse-watchOS.zip`
90
+
-`ParseFacebookUtils-iOS.zip`
91
+
-`ParseFacebookUtils-tvOS.zip`
92
+
-`ParseTwitterUtils-iOS.zip`
93
+
-`ParseUI.zip`
91
94
92
95
93
96
#### Using Parse as a sub-project
94
97
95
-
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.
98
+
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.
0 commit comments