-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathLoggerAPI.podspec
More file actions
29 lines (23 loc) · 957 Bytes
/
Copy pathLoggerAPI.podspec
File metadata and controls
29 lines (23 loc) · 957 Bytes
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 = "LoggerAPI"
s.module_name = 'LoggerAPI'
s.version = "2.1.0"
s.cocoapods_version = '~> 1.16'
s.summary = "A logger protocol that provides a common logging interface for different kinds of loggers."
s.homepage = "https://github.com/Kitura/LoggerAPI"
s.license = {
:type => "Apache License, Version 2.0"
}
s.source = {
:git => "https://github.com/Kitura/LoggerAPI.git",
:tag => s.version
}
s.author = "IBM and the Kitura project authors"
s.swift_version = '5.8'
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "11.0"
s.tvos.deployment_target = "12.0"
s.watchos.deployment_target = "8.0"
s.source_files = "Sources/**/*.swift"
s.dependency 'SwiftlyLogging', '~> 1.6'
end