-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 9856334
Showing
67 changed files
with
2,231 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
## Build generated | ||
build/ | ||
DerivedData/ | ||
|
||
## Various settings | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata/ | ||
|
||
## Other | ||
*.moved-aside | ||
*.xccheckout | ||
*.xcscmblueprint | ||
|
||
## Obj-C/Swift specific | ||
*.hmap | ||
*.ipa | ||
*.dSYM.zip | ||
*.dSYM | ||
|
||
# Swift Package Manager | ||
.build/ | ||
|
||
# CocoaPods | ||
We recommend against adding the Pods directory to your .gitignore. However | ||
you should judge for yourself, the pros and cons are mentioned at: | ||
https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control | ||
Example/Pods/ | ||
|
||
# Carthage | ||
Carthage | ||
|
||
### Visual Studio Code | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "CombineCocoa" | ||
s.version = "0.0.1" | ||
s.summary = "CombineCocoa provided basic publisher bridges for UIControls in UIKit" | ||
s.description = <<-DESC | ||
Combine publisher bridges for Cocoa Controls (UIControl) in UIKit | ||
DESC | ||
s.homepage = "https://github.com/freak4pc/CombineCocoa" | ||
s.license = 'MIT' | ||
s.author = { "Shai Mishali" => "[email protected]" } | ||
s.source = { :git => "https://github.com/freak4pc/CombineCocoa.git", :tag => s.version.to_s } | ||
|
||
s.requires_arc = true | ||
|
||
s.ios.deployment_target = '13.0' | ||
|
||
s.source_files = 'Sources/**/*.swift' | ||
s.frameworks = ['Combine'] | ||
s.swift_version = '5.0' | ||
end |
Oops, something went wrong.