├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── Source └── Thread.swift ├── Test ├── Thread.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── ThreadOSX.xcscheme │ │ ├── ThreadiOS.xcscheme │ │ └── ThreadtvOS.xcscheme ├── ThreadOSX │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── MainMenu.xib │ └── Info.plist ├── ThreadOSXTests │ └── Info.plist ├── ThreadTests.swift ├── ThreadiOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── ThreadiOSTests │ └── Info.plist ├── ThreadtvOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── ThreadtvOSTests │ └── Info.plist └── Thread.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/README.md -------------------------------------------------------------------------------- /Source/Thread.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Source/Thread.swift -------------------------------------------------------------------------------- /Test/Thread.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/Thread.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Test/Thread.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/Thread.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Test/Thread.xcodeproj/xcshareddata/xcschemes/ThreadOSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/Thread.xcodeproj/xcshareddata/xcschemes/ThreadOSX.xcscheme -------------------------------------------------------------------------------- /Test/Thread.xcodeproj/xcshareddata/xcschemes/ThreadiOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/Thread.xcodeproj/xcshareddata/xcschemes/ThreadiOS.xcscheme -------------------------------------------------------------------------------- /Test/Thread.xcodeproj/xcshareddata/xcschemes/ThreadtvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/Thread.xcodeproj/xcshareddata/xcschemes/ThreadtvOS.xcscheme -------------------------------------------------------------------------------- /Test/ThreadOSX/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadOSX/AppDelegate.swift -------------------------------------------------------------------------------- /Test/ThreadOSX/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadOSX/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Test/ThreadOSX/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadOSX/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Test/ThreadOSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadOSX/Info.plist -------------------------------------------------------------------------------- /Test/ThreadOSXTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadOSXTests/Info.plist -------------------------------------------------------------------------------- /Test/ThreadTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadTests.swift -------------------------------------------------------------------------------- /Test/ThreadiOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadiOS/AppDelegate.swift -------------------------------------------------------------------------------- /Test/ThreadiOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadiOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Test/ThreadiOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadiOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Test/ThreadiOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadiOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Test/ThreadiOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadiOS/Info.plist -------------------------------------------------------------------------------- /Test/ThreadiOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadiOS/ViewController.swift -------------------------------------------------------------------------------- /Test/ThreadiOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadiOSTests/Info.plist -------------------------------------------------------------------------------- /Test/ThreadtvOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/AppDelegate.swift -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Test/ThreadtvOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Test/ThreadtvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/Info.plist -------------------------------------------------------------------------------- /Test/ThreadtvOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOS/ViewController.swift -------------------------------------------------------------------------------- /Test/ThreadtvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Test/ThreadtvOSTests/Info.plist -------------------------------------------------------------------------------- /Thread.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duemunk/Thread/HEAD/Thread.podspec --------------------------------------------------------------------------------