- Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathSWNetworking.podspec
More file actions
Latest commit
49 lines (39 loc) · 1.89 KB
/
Copy pathSWNetworking.podspec
File metadata and controls
49 lines (39 loc) · 1.89 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
41
42
43
44
45
46
47
48
49
Pod::Spec.newdo |s|
s.name="SWNetworking"
s.version="1.4.3"
s.summary="Open Source Request handeling/managing on iOS snf OS X"
s.description="SWNetworking is a open-source and highly versatile multi-purpose frameworks. Clean code and sleek features make SkyWite an ideal choice. Powerful high-level networking abstractions built into Cocoa. It has a modular architecture with well-designed, feature-rich APIs that are a joy to use. Achieve your deadlines by using SkyWite. You will save Hundred hours. Start development using Skywite. Definitely you will be happy....! yeah.."
s.homepage="https://github.com/skywite/SWNetworking"
s.license='MIT'
s.author={"saman kumara"=>"me@isamankumara.com"}
s.source={:git=>"https://github.com/skywite/SWNetworking.git",:tag=>s.version.to_s,:submodules=>true}
s.requires_arc=true
s.ios.deployment_target="7.0"
s.tvos.deployment_target='9.0'
#s.watchos.deployment_target = '2.0'
s.osx.deployment_target='10.9'
s.source_files='SWNetworking/SWNetworking.h'
s.public_header_files='SWNetworking/*.h'
s.subspec'File'do |ss|
ss.source_files='SWNetworking/File'
end
s.subspec'ResponseType'do |ss|
ss.source_files='SWNetworking/ResponseType'
ss.dependency'SWNetworking/File'
end
s.subspec'Reachability'do |ss|
ss.source_files='SWNetworking/Reachability'
end
s.subspec'SWRequest'do |ss|
ss.source_files='SWNetworking/SWRequest'
ss.dependency'SWNetworking/ResponseType'
ss.dependency'SWNetworking/File'
ss.dependency'SWNetworking/Reachability'
end
s.subspec'UIKit+SWNetworking'do |ss|
ss.source_files='SWNetworking/UIKit+SWNetworking'
ss.dependency'SWNetworking/SWRequest'
ss.dependency'SWNetworking/ResponseType'
end
s.frameworks='SystemConfiguration'
end