├── .gitignore ├── .swift-version ├── .travis.yml ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md └── Sources ├── FlockCLI ├── Beak.swift ├── CheckCommand.swift ├── CleanCommand.swift ├── FlockCommand.swift ├── FlockError.swift ├── ForwardCommand.swift ├── HelpMessageGenerator.swift ├── InitCommand.swift ├── ListCommand.swift ├── Router.swift └── main.swift └── FlockKit ├── Environment.swift ├── Flock.swift ├── Server.swift └── TaskError.swift /.gitignore: -------------------------------------------------------------------------------- 1 | .build 2 | 3 | Packages 4 | 5 | .DS_Store 6 | 7 | *.xcodeproj 8 | 9 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.1 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/README.md -------------------------------------------------------------------------------- /Sources/FlockCLI/Beak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockCLI/Beak.swift -------------------------------------------------------------------------------- /Sources/FlockCLI/CheckCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockCLI/CheckCommand.swift -------------------------------------------------------------------------------- /Sources/FlockCLI/CleanCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockCLI/CleanCommand.swift -------------------------------------------------------------------------------- /Sources/FlockCLI/FlockCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockCLI/FlockCommand.swift -------------------------------------------------------------------------------- /Sources/FlockCLI/FlockError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockCLI/FlockError.swift -------------------------------------------------------------------------------- /Sources/FlockCLI/ForwardCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockCLI/ForwardCommand.swift -------------------------------------------------------------------------------- /Sources/FlockCLI/HelpMessageGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockCLI/HelpMessageGenerator.swift -------------------------------------------------------------------------------- /Sources/FlockCLI/InitCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockCLI/InitCommand.swift -------------------------------------------------------------------------------- /Sources/FlockCLI/ListCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockCLI/ListCommand.swift -------------------------------------------------------------------------------- /Sources/FlockCLI/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockCLI/Router.swift -------------------------------------------------------------------------------- /Sources/FlockCLI/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockCLI/main.swift -------------------------------------------------------------------------------- /Sources/FlockKit/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockKit/Environment.swift -------------------------------------------------------------------------------- /Sources/FlockKit/Flock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockKit/Flock.swift -------------------------------------------------------------------------------- /Sources/FlockKit/Server.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockKit/Server.swift -------------------------------------------------------------------------------- /Sources/FlockKit/TaskError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeheis/Flock/HEAD/Sources/FlockKit/TaskError.swift --------------------------------------------------------------------------------