YH_AFNetworking.podspec
1.1 KB
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
32
33
34
35
36
37
38
39
40
Pod::Spec.new do |s|
s.name = "YH_AFNetworking"
s.version = "1.0.3"
s.summary = "YH_AFNetworking"
s.description = <<-DESC
YH_AFNetworking
DESC
s.homepage = "http://git.yoho.cn/ios/yh_afnetworking"
s.license = 'MIT'
s.author = { "iOSdev" => "iosdev@yoho.cn" }
s.source = { :git => "http://git.yoho.cn/ios/yh_afnetworking.git",
:branch => 'yohobuy',
:tag => s.version.to_s }
s.platform = :ios, '6.0'
s.requires_arc = true
s.subspec 'AFNetworking' do |ss|
ss.source_files = 'AFNetworking/AFNetworking/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'UIKit+AFNetworking' do |ss|
ss.source_files = 'AFNetworking/UIKit+AFNetworking/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'Aspects' do |ss|
ss.source_files = 'Aspects/*.{h,m}'
ss.requires_arc = true
end
s.subspec 'Util' do |ss|
ss.source_files = 'Util/*.{h,m}'
ss.requires_arc = true
end
s.frameworks = 'Foundation', 'CoreGraphics', 'UIKit'
end