-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRaLog.podspec
executable file
·38 lines (22 loc) · 1.01 KB
/
RaLog.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
# pod lib lint --verbose --allow-warnings RaLog.podspec
# pod trunk push --verbose --allow-warnings RaLog.podspec
Pod::Spec.new do |s|
s.name = 'RaLog'
s.version = '1.7.4'
s.summary = 'A logging framework.'
s.description = 'A lightweight, highly customizable, protocol-oriented logging framework.'
s.homepage = 'https://github.com/RakuyoKit/RaLog'
s.license = 'MIT'
s.author = { 'Rakuyo' => '[email protected]' }
s.source = { :git => 'https://github.com/RakuyoKit/RaLog.git', :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.watchos.deployment_target = '5.0'
s.visionos.deployment_target = '1.0'
s.swift_version = '5.0'
s.module_name = 'RaLog'
s.source_files = 'Sources/**/*.swift'
s.resource_bundles = { 'RaLog' => ['Sources/PrivacyInfo.xcprivacy'] }
end