-
Notifications
You must be signed in to change notification settings - Fork 0
/
TraceLogAdaptiveWriter.podspec
31 lines (23 loc) · 1.34 KB
/
TraceLogAdaptiveWriter.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
Pod::Spec.new do |s|
s.name = "TraceLogAdaptiveWriter"
s.version = "2.0.0"
s.summary = "An adaptive system log writer for the TraceLog logging system."
s.description = <<-DESC
A `Writer` implementation for the TraceLog logging system that logs to the system logging facility on the platform that its running on.
- **Linux**: On Linux it will writer to the systemd journal.
- **Darwin**: On Darwin platforms (macOS, iOS, tvOS, watchOS) it will write to the Unified Logging System.
See [TraceLog](https://github.com/tonystone/tracelog) for more details.
DESC
s.license = 'Apache License, Version 2.0'
s.homepage = "https://github.com/tonystone/tracelog-adaptive-writer"
s.author = { "Tony Stone" => "https://github.com/tonystone" }
s.source = { :git => "https://github.com/tonystone/tracelog-adaptive-writer.git", :tag => s.version.to_s }
s.swift_version = '4.1'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.13'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '10.0'
s.requires_arc = true
s.source_files = 'Sources/TraceLogAdaptiveWriter/**/*.swift'
s.dependency 'TraceLog', '~> 5.0'
end