-
Notifications
You must be signed in to change notification settings - Fork 0
/
CaptainsLog.podspec
81 lines (73 loc) · 2.32 KB
/
CaptainsLog.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#
# Be sure to run `pod spec lint CaptainsLog.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "CaptainsLog"
spec.version = "0.0.1"
spec.summary = "Captain's Log logging library"
spec.description = <<-DESC
Swift library to integrate in your project to enable logging using Captain's Log app.
DESC
spec.homepage = "https://www.reactant.tech"
spec.license = "MIT"
spec.author = {
'Tadeas Kriz' => '[email protected]',
'Robin Krenecky' => '[email protected]'
}
spec.source = {
:git => "https://github.com/Brightify/CaptainsLog.git",
:tag => spec.version.to_s
}
spec.swift_version = "4.2"
spec.ios.deployment_target = "10.3"
spec.osx.deployment_target = "10.13"
spec.default_subspec = 'Models', 'Discovery', 'Core', 'NSURLSession'
spec.subspec 'Models' do |subspec|
subspec.source_files = [
'Sources/Models/**/*.swift'
]
end
spec.subspec 'Discovery' do |subspec|
subspec.dependency 'CaptainsLog/Models'
subspec.source_files = [
'Sources/Discovery/**/*.swift'
]
end
spec.subspec 'Core' do |subspec|
subspec.dependency 'CaptainsLog/Discovery'
subspec.source_files = [
'Sources/Core/**/*.swift'
]
end
spec.subspec 'Fetcher' do |subspec|
subspec.dependency 'CaptainsLog/Core'
subspec.dependency 'Fetcher/Core'
subspec.source_files = [
'Sources/Fetcher/**/*.swift'
]
end
spec.subspec 'SwiftyBeaver' do |subspec|
subspec.dependency 'CaptainsLog/Core'
subspec.dependency 'SwiftyBeaver'
subspec.source_files = [
'Sources/SwiftyBeaver/**/*.swift'
]
end
spec.subspec 'NSURLSession' do |subspec|
subspec.dependency 'CaptainsLog/Core'
subspec.source_files = [
'Sources/NSURLSession/**/*.swift'
]
end
spec.subspec 'CocoaLumberjack' do |subspec|
subspec.dependency 'CaptainsLog/Core'
subspec.dependency 'CocoaLumberjack/Swift'
subspec.source_files = [
'Sources/CocoaLumberjack/**/*.swift'
]
end
end