forked from alibaba/coobjc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcokit.podspec
More file actions
28 lines (22 loc) · 724 Bytes
/
cokit.podspec
File metadata and controls
28 lines (22 loc) · 724 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
Pod::Spec.new do |s|
s.name = "cokit"
s.version = "1.0.0"
s.summary = "Coobjc's Foundationkit."
s.description = <<-DESC
The Foundation extensions of 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 = 'cokit/cokit/**/*.{h,m}'
s.dependency 'coobjc', '~> 1.0.0'
end