[Add] YH_CFNetworking (0.1.0)
Showing
1 changed file
with
30 additions
and
0 deletions
1 | +# | ||
2 | +# Be sure to run `pod lib lint YH_CFNetworking.podspec' to ensure this is a | ||
3 | +# valid spec before submitting. | ||
4 | +# | ||
5 | +# Any lines starting with a # are optional, but their use is encouraged | ||
6 | +# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html | ||
7 | +# | ||
8 | + | ||
9 | +Pod::Spec.new do |s| | ||
10 | + s.name = 'YH_CFNetworking' | ||
11 | + s.version = '0.1.0' | ||
12 | + s.summary = '基于cfnetwork框架封装的网络请求库' | ||
13 | + | ||
14 | + s.description = <<-DESC | ||
15 | + 基于cfnetwork框架封装的网络请求库,目前支持 超时,取消操作 | ||
16 | + 计划添加 缓存 重复请求合并 进度报告 自定义server trust校验等操作 | ||
17 | + DESC | ||
18 | + | ||
19 | + s.homepage = 'http://git.yoho.cn/ios/YH_CFNetworking' | ||
20 | + s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
21 | + s.author = { 'willice9527' => 'jinlin.liu@yoho.cn' } | ||
22 | + s.source = { :git => 'http://git.yoho.cn/ios/YH_CFNetworking.git', :tag => s.version.to_s } | ||
23 | + | ||
24 | + s.ios.deployment_target = '8.0' | ||
25 | + | ||
26 | + s.source_files = 'YH_CFNetworking/Classes/**/*' | ||
27 | + | ||
28 | + s.frameworks = 'Foundation', 'MapKit' | ||
29 | + s.dependency 'AFNetworking', '~> 3.0' | ||
30 | +end |
-
Please register or login to post a comment