├── .github └── workflows │ └── swift.yml ├── .gitignore ├── .swift-version ├── CHANGELOG.md ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── Weakify │ └── Weakify.swift ├── Tests └── WeakifyTests │ └── WeakifyTest.swift ├── Weakify.podspec └── codecov.yaml /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klundberg/Weakify/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klundberg/Weakify/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klundberg/Weakify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klundberg/Weakify/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klundberg/Weakify/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klundberg/Weakify/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Weakify/Weakify.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klundberg/Weakify/HEAD/Sources/Weakify/Weakify.swift -------------------------------------------------------------------------------- /Tests/WeakifyTests/WeakifyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klundberg/Weakify/HEAD/Tests/WeakifyTests/WeakifyTest.swift -------------------------------------------------------------------------------- /Weakify.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klundberg/Weakify/HEAD/Weakify.podspec -------------------------------------------------------------------------------- /codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klundberg/Weakify/HEAD/codecov.yaml --------------------------------------------------------------------------------