-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLLALogManager.podspec
More file actions
42 lines (26 loc) Β· 2.36 KB
/
LLALogManager.podspec
File metadata and controls
42 lines (26 loc) Β· 2.36 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
32
33
34
35
36
37
38
39
40
41
42
Pod::Spec.new do |spec|
# βββ Spec Metadata ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.name = "LLALogManager"
spec.version = "1.0.15"
spec.summary = "Customizable Swift Logger πβΉοΈβ οΈπ£π₯"
spec.description = <<-DESC
LLALogManager can output additional information.
DESC
spec.homepage = "https://github.com/daisuke-t-jp/LLALogManager"
spec.screenshots = "https://raw.githubusercontent.com/daisuke-t-jp/LLALogManager/master/doc/header.png"
# βββ Spec License βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.license = { :type => "MIT", :file => "LICENSE" }
# βββ Author Metadata βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.author = { "daisuke-t-jp" => "daisuke.t.jp@gmail.com" }
# βββ Platform Specifics βββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.ios.deployment_target = "10.0"
spec.osx.deployment_target = "10.12"
spec.tvos.deployment_target = "12.0"
# βββ Source Location ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.source = { :git => "https://github.com/daisuke-t-jp/LLALogManager.git", :tag => "#{spec.version}" }
# βββ Source Code ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.source_files = "LLALogManager/LLALogManager/*.{swift}"
# βββ Project Settings βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
spec.swift_version = "5.0"
spec.requires_arc = true
end