-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHMLoggerKit.podspec
More file actions
31 lines (27 loc) · 1.1 KB
/
HMLoggerKit.podspec
File metadata and controls
31 lines (27 loc) · 1.1 KB
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
Pod::Spec.new do |s|
s.name = "HMLoggerKit"
s.module_name = "LoggerKit"
s.version = "0.2.7"
s.summary = "High-performance logging framework based on SwiftyBeaver."
s.description = <<-DESC
LoggerKit is a high-performance, multi-platform logging framework based on SwiftyBeaver.
It supports dependency injection, multiple destinations (console and file), log rotation,
JSON log files, SwiftUI Environment integration, and a built-in log viewer UI.
DESC
s.homepage = "https://github.com/HeminWon/LoggerKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "HeminWon" => "heminwmh@gmail.com" }
s.source = { :git => "https://github.com/HeminWon/LoggerKit.git", :tag => s.version.to_s }
s.swift_version = "5.9"
s.platforms = {
:ios => "15.0",
:osx => "12.0",
:watchos => "8.0",
:tvos => "15.0"
}
s.source_files = "Sources/LoggerKit/**/*.{swift}"
s.resource_bundles = {
"LoggerKit" => ["Sources/LoggerKit/Resources/**/*"]
}
s.dependency "SwiftyBeaver", "~> 2.1"
end