-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathACEToolKit.podspec
More file actions
43 lines (33 loc) · 1.46 KB
/
ACEToolKit.podspec
File metadata and controls
43 lines (33 loc) · 1.46 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
Pod::Spec.new do |s|
s.name = 'ACEToolKit'
s.version = '0.4.0'
s.homepage = 'https://github.com/acerbetti/ACEToolKit'
s.summary = 'Development tools to make my life (and yours) a little bit easier.'
s.author = { 'Stefano Acerbetti' => 'acerbetti@gmail.com' }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/acerbetti/ACEToolKit.git', :tag => "v#{s.version}" }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.7'
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.ios.deployment_target = '8.0'
ss.ios.dependency 'FFGlobalAlertController'
ss.source_files = 'ACEToolKit/*.{h,m}'
ss.requires_arc = true
ss.osx.deployment_target = '10.7'
ss.osx.exclude_files = 'ACEToolKit/ACEActionSheet.*',
'ACEToolKit/ACEAlertView.*',
'ACEToolKit/ACEErrorUtils.*',
'ACEToolKit/ACENavigationController.*'
end
s.subspec 'AppExtension' do |ss|
ss.ios.deployment_target = '8.0'
ss.source_files = 'ACEToolKit/*.{h,m}'
ss.exclude_files = 'ACEToolKit/ACEActionSheet.*',
'ACEToolKit/ACEAlertView.*',
'ACEToolKit/ACEErrorUtils.*',
'ACEToolKit/ACENavigationController.*'
ss.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'ACE_APP_EXTENSION=1' }
ss.requires_arc = true
end
end