forked from alibaba/coobjc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoswift.podspec
More file actions
31 lines (24 loc) · 806 Bytes
/
coswift.podspec
File metadata and controls
31 lines (24 loc) · 806 Bytes
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
29
30
31
Pod::Spec.new do |s|
s.name = "coswift"
s.version = "1.0.0"
s.summary = "A coroutine framework for swift."
s.description = <<-DESC
A coroutine framework for swift, using coobjc.
DESC
s.homepage = "https://github.com/alibaba/coobjc"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Alibaba-INC copyright
LICENSE
}
s.author = { "pengyutang125" => "pengyutang125@sina.com" }
s.platform = :ios
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.0.0' }
s.source_files = 'coswift/*.{h,swift}'
s.swift_version = '4.2'
s.dependency 'fishhook', '~> 0.2.0'
s.dependency 'coobjc', '~> 1.0.0'
end