-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetworkKitHelper.podspec
More file actions
31 lines (16 loc) · 861 Bytes
/
Copy pathNetworkKitHelper.podspec
File metadata and controls
31 lines (16 loc) · 861 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
29
30
31
Pod::Spec.new do |s|
s.name = "NetworkKitHelper"
s.version = "0.0.2"
s.summary = "A wrapper for request network in iOS development. Support successBlock and failureBlock"
s.homepage = "https://github.com/tin612/NetworkHelperKit"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "Phan Thanh Tin" => "phantin612@gmail.com" }
s.social_media_url = "https://www.facebook.com/thanh.tin612"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/tin612/NetworkHelperKit.git", :tag => "#{s.version}" }
s.source_files = "Classes", "NetworkHelperKit/*.{h,m,swift}"
s.exclude_files = "Classes/Exclude"
s.dependency "Alamofire"
s.dependency "Gloss"
end