-
Notifications
You must be signed in to change notification settings - Fork 5
/
SLF4Swift.podspec
99 lines (82 loc) · 4.19 KB
/
SLF4Swift.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "SLF4Swift"
s.version = "3.0.0"
s.summary = "Simple Log Facade for Swift"
s.description = <<-DESC
Simple Log Facade for Swift serves as a simple facade
for logging frameworks allowing the end user to plug in the desired
logging framework at deployment time
DESC
s.homepage = "https://github.com/phimage/SLF4Swift"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "phimage" => "[email protected]" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/phimage/SLF4Swift.git", :tag => s.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.default_subspec = 'Core'
s.subspec "Core" do |sp|
sp.source_files = "Sources/*.swift"
end
s.subspec "Impl" do |sp|
sp.source_files = "Sources/Implementation/*.swift"
sp.dependency 'SLF4Swift/Core'
end
## ――― Backend ――――――――――――――――――――――――――――――――――――――――――――――――― ##
s.subspec "CocoaLumberjack" do |sp|
sp.source_files = "Backend/CocoaLumberjack/*.swift"
sp.dependency 'SLF4Swift/Core'
sp.dependency 'CocoaLumberjack/Swift'
sp.ios.deployment_target = '8.0'
sp.osx.deployment_target = '10.10'
sp.watchos.deployment_target = '2.0'
end
s.subspec "XCGLogger" do |sp|
sp.source_files = "Backend/XCGLogger/*.swift"
sp.dependency 'SLF4Swift/Core'
sp.dependency 'XCGLogger'
sp.ios.deployment_target = '8.0'
sp.osx.deployment_target = '10.9'
sp.watchos.deployment_target = '2.0'
#sp.tvos.deployment_target = '9.0'
end
s.subspec "SpeedLog" do |sp|
sp.source_files = "Backend/SpeedLog/*.swift"
sp.dependency 'SLF4Swift/Core'
sp.dependency 'SpeedLog'
sp.ios.deployment_target = '8.0'
sp.osx.deployment_target = '10.9'
sp.watchos.deployment_target = '2.0'
sp.tvos.deployment_target = '9.0'
end
s.subspec "Loggerithm" do |sp|
sp.source_files = "Backend/Loggerithm/*.swift"
sp.dependency 'SLF4Swift/Core'
sp.dependency 'XCGLogger'
sp.ios.deployment_target = '8.0'
sp.osx.deployment_target = '10.9'
end
#s.subspec "QorumLogs" do |sp|
# sp.source_files = "Backend/QorumLogs/*.swift"
# sp.dependency 'SLF4Swift/Core'
# sp.dependency 'SpeedLog'
# sp.ios.deployment_target = '8.0'
# sp.osx.deployment_target = '10.9'
#end
#s.subspec "Swell" do |sp|
# sp.source_files = "Backend/Swell/*.swift"
# sp.dependency 'SLF4Swift/Core'
# sp.dependency 'Swell'
# sp.ios.deployment_target = '8.0'
# sp.osx.deployment_target = '10.9'
#end
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.resource = "logo.png"
end