forked from andrealufino/ALSystemUtilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALSystemUtilities.podspec
35 lines (30 loc) · 1.17 KB
/
ALSystemUtilities.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
35
Pod::Spec.new do |s|
s.name = 'ALSystemUtilities'
s.version = '1.3.4'
s.license = {
:type => 'MIT',
:file => 'LICENSE'
}
s.homepage = 'https://github.com/andrealufino/ALSystemUtilities'
s.author = {
'Andrea Lufino' => '[email protected]'
}
s.summary = 'Get every kind of info about your device'
# Source Info
s.platform = :ios, '6.1'
s.source = {
:git => 'https://github.com/andrealufino/ALSystemUtilities.git',
:tag => '1.3.4'
}
s.source_files = 'ALSystemUtilities/ALSystemUtilities/**/*.{h,m}'
s.requires_arc = true
s.resources = 'ALSystemUtilities/ALSystemUtilities/Resources/**/*.{plist}'
s.frameworks = 'AudioToolbox','CFNetwork','CoreTelephony','ExternalAccessory','Security','SystemConfiguration','CoreGraphics','CoreFoundation','Foundation'
non_arc_files = 'ALSystemUtilities/ALSystemUtilities/Reachability/Reachability.h','ALSystemUtilities/ALSystemUtilities/Reachability/Reachability.m'
s.exclude_files = non_arc_files
s.subspec 'no-arc' do |sna|
sna.requires_arc = false
sna.source_files = non_arc_files
end
# Pod Dependencies
end