├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── Then │ └── Then.swift ├── Tests └── ThenTests │ └── ThenTests.swift ├── Then.podspec └── codecov.yml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Then/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Then/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Then/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Then/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Then/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Then/Then.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Then/HEAD/Sources/Then/Then.swift -------------------------------------------------------------------------------- /Tests/ThenTests/ThenTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Then/HEAD/Tests/ThenTests/ThenTests.swift -------------------------------------------------------------------------------- /Then.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Then/HEAD/Then.podspec -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Then/HEAD/codecov.yml --------------------------------------------------------------------------------