├── .gitignore ├── .gitmodules ├── Cartfile ├── Cartfile.resolved ├── LICENSE ├── README.md ├── Stream.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Stream-Mac.xcscheme │ └── Stream-iOS.xcscheme ├── Stream.xcworkspace └── contents.xcworkspacedata ├── Stream ├── Info.plist ├── Stream.h └── Stream.swift └── StreamTests ├── Info.plist └── StreamTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/.gitmodules -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/README.md -------------------------------------------------------------------------------- /Stream.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/Stream.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Stream.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/Stream.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Stream.xcodeproj/xcshareddata/xcschemes/Stream-Mac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/Stream.xcodeproj/xcshareddata/xcschemes/Stream-Mac.xcscheme -------------------------------------------------------------------------------- /Stream.xcodeproj/xcshareddata/xcschemes/Stream-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/Stream.xcodeproj/xcshareddata/xcschemes/Stream-iOS.xcscheme -------------------------------------------------------------------------------- /Stream.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/Stream.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Stream/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/Stream/Info.plist -------------------------------------------------------------------------------- /Stream/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/Stream/Stream.h -------------------------------------------------------------------------------- /Stream/Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/Stream/Stream.swift -------------------------------------------------------------------------------- /StreamTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/StreamTests/Info.plist -------------------------------------------------------------------------------- /StreamTests/StreamTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antitypical/Stream/HEAD/StreamTests/StreamTests.swift --------------------------------------------------------------------------------