-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathBackLogger.podspec
29 lines (25 loc) · 895 Bytes
/
BackLogger.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
Pod::Spec.new do |s|
s.name = 'BackLogger'
s.version = '1.0.1'
s.license = { :type => 'MIT' }
s.homepage = 'https://github.com/leoneparise/BackLogger'
s.authors = { 'Tony Million' => '[email protected]' }
s.summary = 'Background Log Manager'
s.source = { :git => 'https://github.com/leoneparise/BackLogger.git', :tag => s.version }
s.platform = :ios
s.default_subspec = 'Core'
s.ios.deployment_target = '8.2'
s.subspec 'Core' do |core|
core.source_files = 'BackLogger/*.swift'
core.dependency 'SQLite.swift'
core.dependency 'SwiftDate'
core.framework = "Foundation"
end
s.subspec 'UI' do |ui|
ui.ios.deployment_target = '9.0'
ui.source_files = 'BackLoggerUI/*.swift'
ui.resource = ['BackLoggerUI/**/*.xib']
ui.framework = "UIKit"
ui.dependency 'BackLogger/Core'
end
end