Skip to content

Commit

Permalink
CombineCocoa: First Blood 💉
Browse files Browse the repository at this point in the history
  • Loading branch information
freak4pc committed Aug 3, 2019
0 parents commit 9856334
Show file tree
Hide file tree
Showing 67 changed files with 2,231 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .gitignore
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
20 changes: 20 additions & 0 deletions CombineCocoa.podspec
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
Loading

0 comments on commit 9856334

Please sign in to comment.