Skip to content

Commit d8ceb21

Browse files
authored
Merge pull request #15 from srea/feature/demo
Add Demo
2 parents 050b863 + 84e5e6f commit d8ceb21

File tree

93 files changed

+4991
-41
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+4991
-41
lines changed

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
.swiftpm
2+
3+
# Created by https://www.toptal.com/developers/gitignore/api/swiftpm
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=swiftpm
5+
6+
### SwiftPM ###
7+
Packages
8+
.build/
9+
xcuserdata
10+
DerivedData/
11+
*.xcodeproj
12+
13+
14+
# End of https://www.toptal.com/developers/gitignore/api/swiftpm
115

216
# Created by https://www.gitignore.io/api/node,swift,xcode
317
# Edit at https://www.gitignore.io/?templates=node,swift,xcode

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
github "ReactiveX/RxSwift" ~> 5.1
2-
github "uber/RIBs" ~> 0.9
2+
github "uber/RIBs" "0.9.2"

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
github "ReactiveX/RxSwift" "5.1.1"
2-
github "uber/RIBs" "v0.9.2"
2+
github "uber/RIBs" "0.9.2"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Pods/
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
platform :ios, '13.0'
2+
3+
use_frameworks!
4+
inhibit_all_warnings!
5+
6+
target 'TicTacToe' do
7+
pod 'RIBs', :git => 'https://github.com/uber/RIBs.git', tag: '0.9.2'
8+
pod 'SnapKit'
9+
pod 'RxCocoa', '~> 5.1.1'
10+
end
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
PODS:
2+
- RIBs (0.9.3):
3+
- RxRelay (~> 5.0)
4+
- RxSwift (~> 5.0)
5+
- RxCocoa (5.1.1):
6+
- RxRelay (~> 5)
7+
- RxSwift (~> 5)
8+
- RxRelay (5.1.1):
9+
- RxSwift (~> 5)
10+
- RxSwift (5.1.1)
11+
- SnapKit (5.0.1)
12+
13+
DEPENDENCIES:
14+
- RIBs (from `https://github.com/uber/RIBs.git`, tag `0.9.2`)
15+
- RxCocoa (~> 5.1.1)
16+
- SnapKit
17+
18+
SPEC REPOS:
19+
trunk:
20+
- RxCocoa
21+
- RxRelay
22+
- RxSwift
23+
- SnapKit
24+
25+
EXTERNAL SOURCES:
26+
RIBs:
27+
:git: https://github.com/uber/RIBs.git
28+
:tag: 0.9.2
29+
30+
CHECKOUT OPTIONS:
31+
RIBs:
32+
:git: https://github.com/uber/RIBs.git
33+
:tag: 0.9.2
34+
35+
SPEC CHECKSUMS:
36+
RIBs: efceda5df20c1a1e05139232a4638a6242caa92a
37+
RxCocoa: 32065309a38d29b5b0db858819b5bf9ef038b601
38+
RxRelay: d77f7d771495f43c556cbc43eebd1bb54d01e8e9
39+
RxSwift: 81470a2074fa8780320ea5fe4102807cb7118178
40+
SnapKit: 97b92857e3df3a0c71833cce143274bf6ef8e5eb
41+
42+
PODFILE CHECKSUM: e098e2fe24385cac086a3d02c55ea1ff45801a95
43+
44+
COCOAPODS: 1.9.3
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# RIBs Tutorial 4: Deep Linking
2+
3+
This is the finished code for [tutorial 4](https://github.com/uber/RIBs/wiki/iOS-Tutorial-4).

Example/tutorial4-completed/TicTacToe.xcodeproj/project.pbxproj

Lines changed: 655 additions & 0 deletions
Large diffs are not rendered by default.

Example/tutorial4-completed/TicTacToe.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

0 commit comments

Comments
 (0)