forked from carabina/HTWebService
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTWebService.podspec
More file actions
24 lines (21 loc) · 890 Bytes
/
HTWebService.podspec
File metadata and controls
24 lines (21 loc) · 890 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
Pod::Spec.new do |s|
s.name = "HTWebService"
s.version = "1.0.0"
s.summary = "An network layer framework help you handle JSON to Object mapping, business status judgement etc.
"
s.description = <<-DESC
An network layer framework help you handle JSON to Object mapping, business status judgement etc.
Ease use.
DESC
s.homepage = "https://github.com/DeveloperPans/HTWebService"
s.license = "MIT"
s.social_media_url = 'http://shengpan.net'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source = { :git => "https://github.com/DeveloperPans/HTWebService.git", :tag => s.version.to_s }
s.source_files = 'HTWebService/*.{h,m}'
s.frameworks = 'UIKit'
s.dependency 'AFNetworking'
s.dependency 'Reachability'
end