-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSSystemInfoHelper.podspec
34 lines (22 loc) · 1.39 KB
/
CSSystemInfoHelper.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
30
31
32
33
34
Pod::Spec.new do |s|
s.name = "CSSystemInfoHelper"
s.version = "2.0.1"
s.license = "MIT"
s.summary = "A utility library for getting system info."
s.homepage = "https://github.com/thecatalinstan/CSSystemInfoHelper"
s.author = { "Cătălin Stan" => "[email protected]" }
s.social_media_url = "http://twitter.com/catalinstan"
s.source = { :git => "https://github.com/thecatalinstan/CSSystemInfoHelper.git", :tag => s.version }
s.module_name = "CSSystemInfoHelper"
s.source_files = "CSSystemInfoHelper/Sources/*.{h,m}", "CSSystemInfoHelper/Headers/CSSystemInfoHelper/*.h"
s.public_header_files = "CSSystemInfoHelper/Headers/CSSystemInfoHelper/CSSystemInfoHelper.h", "CSSystemInfoHelper/Headers/CSSystemInfoHelper/CSNetworkInterface.h", "CSSystemInfoHelper/Headers/CSSystemInfoHelper/CSSystemInfo.h"
s.ios.deployment_target = "9.0"
s.ios.frameworks = "Foundation"
s.osx.deployment_target = "10.9"
s.osx.frameworks = "Foundation"
s.tvos.deployment_target = "9.0"
s.tvos.frameworks = "Foundation"
s.watchos.deployment_target = "2.0"
s.watchos.frameworks = "Foundation"
s.requires_arc = true
end