-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathLLHTTPClient.podspec
29 lines (27 loc) · 1.2 KB
/
LLHTTPClient.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
29
#
# Be sure to run `pod spec lint LYHTTPClient.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
# of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
# accepts just a name if you'd rather not provide an email address.
#
# Specify a social_media_url where others can refer to, for example a twitter
# profile URL.
#
Pod::Spec.new do |s|
s.name = 'LLHTTPClient'
s.version = '0.0.3'
s.summary = '基于AFNetworking3.0,实现简单的缓存'
s.homepage = 'https://github.com/lianleven/LLHTTPClient'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'lianleven' => '[email protected]' }
s.platform = :ios, '7.0'
s.source = { :git => 'https://github.com/lianleven/LLHTTPClient.git', :tag => s.version.to_s }
s.source_files = 'LLHTTPClient/*.{h,m}'
s.requires_arc = true
s.dependency "AFNetworking", "~> 3.1.0"
s.dependency "YYCache", "~> 1.0.4"
end