├── .gitignore ├── .swift-version ├── .travis.yml ├── Configs ├── Flow.plist └── FlowTests.plist ├── Flow.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Flow-OSX.xcscheme │ ├── Flow-iOS.xcscheme │ ├── Flow-tvOS.xcscheme │ └── Flow-watchOS.xcscheme ├── FlowOperations.podspec ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── Flow.swift └── Tests └── FlowTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/.travis.yml -------------------------------------------------------------------------------- /Configs/Flow.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/Configs/Flow.plist -------------------------------------------------------------------------------- /Configs/FlowTests.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/Configs/FlowTests.plist -------------------------------------------------------------------------------- /Flow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/Flow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Flow.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/Flow.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Flow.xcodeproj/xcshareddata/xcschemes/Flow-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/Flow.xcodeproj/xcshareddata/xcschemes/Flow-OSX.xcscheme -------------------------------------------------------------------------------- /Flow.xcodeproj/xcshareddata/xcschemes/Flow-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/Flow.xcodeproj/xcshareddata/xcschemes/Flow-iOS.xcscheme -------------------------------------------------------------------------------- /Flow.xcodeproj/xcshareddata/xcschemes/Flow-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/Flow.xcodeproj/xcshareddata/xcschemes/Flow-tvOS.xcscheme -------------------------------------------------------------------------------- /Flow.xcodeproj/xcshareddata/xcschemes/Flow-watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/Flow.xcodeproj/xcshareddata/xcschemes/Flow-watchOS.xcscheme -------------------------------------------------------------------------------- /FlowOperations.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/FlowOperations.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Flow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/Sources/Flow.swift -------------------------------------------------------------------------------- /Tests/FlowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnSundell/Flow/HEAD/Tests/FlowTests.swift --------------------------------------------------------------------------------