├── .github ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md └── Resource │ └── Logo.png ├── .gitignore ├── Package.swift ├── Sources └── Combinative │ ├── UIBarButtonItem+Combine.swift │ └── UIControl+Combine.swift └── Tests ├── CombinativeTests ├── CombinativeTests.swift └── XCTestManifests.swift └── LinuxMain.swift /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/Combinative/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/Combinative/HEAD/.github/LICENSE.md -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/Combinative/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/Resource/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/Combinative/HEAD/.github/Resource/Logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .build 3 | .swiftpm 4 | Combinative.xcodeproj 5 | xcuserdata 6 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/Combinative/HEAD/Package.swift -------------------------------------------------------------------------------- /Sources/Combinative/UIBarButtonItem+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/Combinative/HEAD/Sources/Combinative/UIBarButtonItem+Combine.swift -------------------------------------------------------------------------------- /Sources/Combinative/UIControl+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/Combinative/HEAD/Sources/Combinative/UIControl+Combine.swift -------------------------------------------------------------------------------- /Tests/CombinativeTests/CombinativeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/Combinative/HEAD/Tests/CombinativeTests/CombinativeTests.swift -------------------------------------------------------------------------------- /Tests/CombinativeTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/Combinative/HEAD/Tests/CombinativeTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noppefoxwolf/Combinative/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------