Skip to content

Commit 9856334

Browse files
committed
CombineCocoa: First Blood 💉
0 parents  commit 9856334

File tree

67 files changed

+2231
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+2231
-0
lines changed

‎.gitignore

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
## Build generated
2+
build/
3+
DerivedData/
4+
5+
## Various settings
6+
*.pbxuser
7+
!default.pbxuser
8+
*.mode1v3
9+
!default.mode1v3
10+
*.mode2v3
11+
!default.mode2v3
12+
*.perspectivev3
13+
!default.perspectivev3
14+
xcuserdata/
15+
16+
## Other
17+
*.moved-aside
18+
*.xccheckout
19+
*.xcscmblueprint
20+
21+
## Obj-C/Swift specific
22+
*.hmap
23+
*.ipa
24+
*.dSYM.zip
25+
*.dSYM
26+
27+
# Swift Package Manager
28+
.build/
29+
30+
# CocoaPods
31+
We recommend against adding the Pods directory to your .gitignore. However
32+
you should judge for yourself, the pros and cons are mentioned at:
33+
https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
34+
Example/Pods/
35+
36+
# Carthage
37+
Carthage
38+
39+
### Visual Studio Code
40+
.vscode

‎CombineCocoa.podspec

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Pod::Spec.new do |s|
2+
s.name = "CombineCocoa"
3+
s.version = "0.0.1"
4+
s.summary = "CombineCocoa provided basic publisher bridges for UIControls in UIKit"
5+
s.description = <<-DESC
6+
Combine publisher bridges for Cocoa Controls (UIControl) in UIKit
7+
DESC
8+
s.homepage = "https://github.com/freak4pc/CombineCocoa"
9+
s.license = 'MIT'
10+
s.author = { "Shai Mishali" => "[email protected]" }
11+
s.source = { :git => "https://github.com/freak4pc/CombineCocoa.git", :tag => s.version.to_s }
12+
13+
s.requires_arc = true
14+
15+
s.ios.deployment_target = '13.0'
16+
17+
s.source_files = 'Sources/**/*.swift'
18+
s.frameworks = ['Combine']
19+
s.swift_version = '5.0'
20+
end

0 commit comments

Comments
 (0)