mirror of
https://github.com/uber/RIBs.git
synced 2026-06-16 12:54:31 +00:00
21 lines
603 B
Markdown
21 lines
603 B
Markdown
# RIBs Tutorial 2: Composing RIBs
|
|
|
|
This project is the starting point for [tutorial 2](https://github.com/uber/RIBs/wiki/iOS-Tutorial-2).
|
|
|
|
### Getting started
|
|
Install tooling, unless you've done so already:
|
|
|
|
```
|
|
<RIBs path>/ios/tooling/install-xcode-template.sh
|
|
```
|
|
|
|
Then, install pods for the tutorial:
|
|
|
|
```
|
|
gem install cocoapods # In case you don't have it
|
|
cd <RIBs path>/ios/tutorials/tutorial2
|
|
pod install
|
|
```
|
|
|
|
Then, open the TicTacToe.xcworkspace that was generated by `pod install` and follow the steps described in [tutorial 2](https://github.com/uber/RIBs/wiki/iOS-Tutorial-2) on the RIBs wiki.
|