-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathS2MToolbox.podspec
50 lines (39 loc) · 1.5 KB
/
S2MToolbox.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Pod::Spec.new do |s|
s.name = "S2MToolbox"
s.version = "0.2.3"
s.summary = "iOS Categories and more."
s.homepage = "https://github.com/sinnerschrader-mobile/s2m-toolbox-ios"
s.source = { :git => 'https://github.com/sinnerschrader-mobile/s2m-toolbox-ios.git', :tag => s.version.to_s }
s.authors = { "François Benaiteau" => "[email protected]", "Jörn Ehmann" => "[email protected]", "Sanggeon Park" => "[email protected]", "Nils Grabenhorst" => "[email protected]"}
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.license = { :type => 'BSD-new', :file => 'LICENSE.txt' }
s.default_subspecs = 'Foundation', 'UIKit'
s.subspec 'Foundation' do |f|
f.source_files = 'Foundation/*.{h,m}'
end
s.subspec 'UIKit' do |ui|
ui.source_files = 'UIKit/*.{h,m}'
end
s.subspec 'Kiwi' do |kiwi|
kiwi.dependency 'Kiwi', '~> 2.3.0'
kiwi.frameworks = 'XCTest'
kiwi.source_files = 'Testing/Kiwi/*.{h,m}'
end
s.subspec 'QRCode' do |ut|
ut.source_files = 'QRCode/*.{h,m}'
end
s.subspec 'ShopFinder' do |ut|
ut.source_files = 'ShopFinder/*.{h,m}'
end
s.subspec 'HockeyApp' do |h|
h.dependency 'HockeySDK', '>= 3.6.4'
h.source_files = 'HockeyApp/*.{h,m}'
end
s.subspec 'LocalNotificationHelper' do |ut|
ut.source_files = 'LocalNotificationHelper/*.{h,m}'
end
s.subspec 'DelegateDispatch' do |ut|
ut.source_files = 'DelegateDispatch/*.{h,m}'
end
end