-
Notifications
You must be signed in to change notification settings - Fork 0
/
CaptureCocoaLumberjack.podspec
38 lines (30 loc) · 1.13 KB
/
CaptureCocoaLumberjack.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
Pod::Spec.new do |s|
s.name = 'CaptureCocoaLumberjack'
s.version = '0.16.5'
s.summary = "Official Capture integration for CocoaLumberjack."
s.homepage = 'https://bitdrift.io'
s.license = {
:type => "BITDRIFT SOFTWARE DEVELOPMENT KIT LICENSE AGREEMENT",
:file => "LICENSE.txt"
}
s.authors = {
'Bitdrift, Inc.' => '[email protected]',
'Rafal Augustyniak' => '[email protected]',
'Miguel Angel Juárez López' => '[email protected]',
}
s.source = {
:git => 'https://github.com/bitdriftlabs/capture-ios.git',
:tag => s.version.to_s
}
s.documentation_url = 'https://docs.bitdrift.io'
s.social_media_url = 'https://twitter.com/bitdriftio'
s.platform = :ios, '12.0'
s.swift_versions = ['5.7']
# Pod needs to be built as a static framework as it depends
# on a static Capture framework (via BitdriftCapture pod)
s.static_framework = true
s.dependency 'BitdriftCapture', '= ' + s.version.to_s
s.dependency 'CocoaLumberjack', '~> 3.8'
s.source_files = ['Sources/CaptureCocoaLumberjack/**/*.swift']
s.preserve_paths = ['NOTICE.txt']
end