├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Podfile ├── Podfile.lock ├── README.md ├── iosdc2018-livecoding.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── iosdc2018-livecoding.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── iosdc2018-livecoding ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── TweetReactor.swift ├── TweetViewController.swift ├── TwitterService.swift └── ViewController.swift ├── iosdc2018-livecodingTests ├── Info.plist └── iosdc2018_livecodingTests.swift └── iosdc2018-livecodingUITests ├── Info.plist └── iosdc2018_livecodingUITests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'cocoapods' 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # iosdc2018-livecoding 2 | -------------------------------------------------------------------------------- /iosdc2018-livecoding.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosdc2018-livecoding.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosdc2018-livecoding.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iosdc2018-livecoding.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosdc2018-livecoding.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iosdc2018-livecoding/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding/AppDelegate.swift -------------------------------------------------------------------------------- /iosdc2018-livecoding/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosdc2018-livecoding/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosdc2018-livecoding/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iosdc2018-livecoding/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iosdc2018-livecoding/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding/Info.plist -------------------------------------------------------------------------------- /iosdc2018-livecoding/TweetReactor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding/TweetReactor.swift -------------------------------------------------------------------------------- /iosdc2018-livecoding/TweetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding/TweetViewController.swift -------------------------------------------------------------------------------- /iosdc2018-livecoding/TwitterService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding/TwitterService.swift -------------------------------------------------------------------------------- /iosdc2018-livecoding/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecoding/ViewController.swift -------------------------------------------------------------------------------- /iosdc2018-livecodingTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecodingTests/Info.plist -------------------------------------------------------------------------------- /iosdc2018-livecodingTests/iosdc2018_livecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecodingTests/iosdc2018_livecodingTests.swift -------------------------------------------------------------------------------- /iosdc2018-livecodingUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecodingUITests/Info.plist -------------------------------------------------------------------------------- /iosdc2018-livecodingUITests/iosdc2018_livecodingUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wantedly/iosdc2018-reactorkit/HEAD/iosdc2018-livecodingUITests/iosdc2018_livecodingUITests.swift --------------------------------------------------------------------------------