-
Notifications
You must be signed in to change notification settings - Fork 525
/
coobjc.podspec
28 lines (22 loc) · 1.09 KB
/
coobjc.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Pod::Spec.new do |s|
s.name = "coobjc"
s.version = "1.2.0"
s.summary = "A coroutine framework for Objective-C"
s.description = <<-DESC
This library provides coroutine support for Objective-C and Swift. We added await method、generator and actor model like C#、Javascript and Kotlin. For convenience, we added coroutine categories for some Foundation and UIKit API in cokit framework like NSFileManager, JSON, NSData, UIImage etc. We also add tuple support in coobjc
DESC
s.homepage = "https://github.com/alibaba/coobjc"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Alibaba-INC copyright
LICENSE
}
s.author = { "pengyutang125" => "[email protected]" }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.2.0' }
s.source_files = 'coobjc/**/*.{h,m}'
s.requires_arc = ['coobjc/co/*.m', 'coobjc/generator/*.m', 'coobjc/actor/*.m', 'coobjc/promise/*.m']
s.dependency 'cocore', '~> 1.2.0'
end