forked from shogo4405/Logboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogboard.podspec
More file actions
26 lines (20 loc) · 779 Bytes
/
Logboard.podspec
File metadata and controls
26 lines (20 loc) · 779 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
Pod::Spec.new do |s|
s.name = "Logboard"
s.version = "2.6.1"
s.summary = "Simple Logging framework"
s.swift_version = "5.8"
s.description = <<-DESC
Simple Logging framework for your framework project.
DESC
s.homepage = "https://github.com/shogo4405/Logboard"
s.license = "New BSD"
s.author = { "shogo4405" => "shogo4405@gmail.com" }
s.authors = { "shogo4405" => "shogo4405@gmail.com" }
s.source = { :git => "https://github.com/kenle/Logboard.git", :tag => "#{s.version}" }
s.ios.deployment_target = "13.0"
s.osx.deployment_target = "10.15"
s.tvos.deployment_target = "13.0"
s.watchos.deployment_target = "6.0"
s.visionos.deployment_target = "1.0"
s.source_files = "Sources/**/*.{h,swift}"
end