├── .gitignore ├── .swift-version ├── CONTRIBUTING.md ├── Example └── UpstreamDemo │ ├── Podfile │ ├── Podfile.lock │ ├── UpstreamDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── UpstreamDemo.xcscheme │ ├── UpstreamDemo.xcworkspace │ └── contents.xcworkspacedata │ └── UpstreamDemo │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── Resources │ └── Assets.xcassets │ │ └── AppIcon.appiconset │ │ └── Contents.json │ └── Sources │ ├── AppDelegate.swift │ └── ViewController.swift ├── Info ├── Info-iOS.plist └── Info-tvOS.plist ├── LICENSE.md ├── README.md ├── Sources ├── Adapter.swift ├── DummyView.swift ├── Footer.swift ├── Header.swift ├── Item.swift ├── RegistryService.swift ├── Section.swift └── View+Extensions.swift ├── Upstream.podspec ├── Upstream.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Upstream-iOS.xcscheme │ └── Upstream-tvOS.xcscheme ├── UpstreamTests ├── Info-iOS-Tests.plist └── Info-tvOS-Tests.plist ├── bin ├── bootstrap └── bootstrap-if-needed └── circle.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.1 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/UpstreamDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Example/UpstreamDemo/Podfile -------------------------------------------------------------------------------- /Example/UpstreamDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Example/UpstreamDemo/Podfile.lock -------------------------------------------------------------------------------- /Example/UpstreamDemo/UpstreamDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Example/UpstreamDemo/UpstreamDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/UpstreamDemo/UpstreamDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Example/UpstreamDemo/UpstreamDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/UpstreamDemo/UpstreamDemo.xcodeproj/xcshareddata/xcschemes/UpstreamDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Example/UpstreamDemo/UpstreamDemo.xcodeproj/xcshareddata/xcschemes/UpstreamDemo.xcscheme -------------------------------------------------------------------------------- /Example/UpstreamDemo/UpstreamDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Example/UpstreamDemo/UpstreamDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/UpstreamDemo/UpstreamDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Example/UpstreamDemo/UpstreamDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/UpstreamDemo/UpstreamDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Example/UpstreamDemo/UpstreamDemo/Info.plist -------------------------------------------------------------------------------- /Example/UpstreamDemo/UpstreamDemo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Example/UpstreamDemo/UpstreamDemo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/UpstreamDemo/UpstreamDemo/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Example/UpstreamDemo/UpstreamDemo/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Example/UpstreamDemo/UpstreamDemo/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Example/UpstreamDemo/UpstreamDemo/Sources/ViewController.swift -------------------------------------------------------------------------------- /Info/Info-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Info/Info-iOS.plist -------------------------------------------------------------------------------- /Info/Info-tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Info/Info-tvOS.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Adapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Sources/Adapter.swift -------------------------------------------------------------------------------- /Sources/DummyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Sources/DummyView.swift -------------------------------------------------------------------------------- /Sources/Footer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Sources/Footer.swift -------------------------------------------------------------------------------- /Sources/Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Sources/Header.swift -------------------------------------------------------------------------------- /Sources/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Sources/Item.swift -------------------------------------------------------------------------------- /Sources/RegistryService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Sources/RegistryService.swift -------------------------------------------------------------------------------- /Sources/Section.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Sources/Section.swift -------------------------------------------------------------------------------- /Sources/View+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Sources/View+Extensions.swift -------------------------------------------------------------------------------- /Upstream.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Upstream.podspec -------------------------------------------------------------------------------- /Upstream.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Upstream.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Upstream.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Upstream.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Upstream.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Upstream.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Upstream.xcodeproj/xcshareddata/xcschemes/Upstream-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Upstream.xcodeproj/xcshareddata/xcschemes/Upstream-iOS.xcscheme -------------------------------------------------------------------------------- /Upstream.xcodeproj/xcshareddata/xcschemes/Upstream-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/Upstream.xcodeproj/xcshareddata/xcschemes/Upstream-tvOS.xcscheme -------------------------------------------------------------------------------- /UpstreamTests/Info-iOS-Tests.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/UpstreamTests/Info-iOS-Tests.plist -------------------------------------------------------------------------------- /UpstreamTests/Info-tvOS-Tests.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/UpstreamTests/Info-tvOS-Tests.plist -------------------------------------------------------------------------------- /bin/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/bin/bootstrap -------------------------------------------------------------------------------- /bin/bootstrap-if-needed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/bin/bootstrap-if-needed -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onmyway133/Upstream/HEAD/circle.yml --------------------------------------------------------------------------------