-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLog4s.podspec
36 lines (24 loc) · 1.26 KB
/
Log4s.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
Pod::Spec.new do |s|
s.name = "Log4s"
s.version = "1.4.0"
s.summary = "A logging library written in swift."
s.description = <<-DESC
Log4s is a logging library similar in philosophy to log4j.
It is meant to be :
* very simple to use for simple cases
* extensively configurable for less simple cases
DESC
s.homepage = "http://github.com/igor-makarov/Log4s"
s.license = { :type => "Apache v2.0", :file => "LICENSE" }
s.authors = { "Igor Makarov" => "igormaka@gmail.com",
"Jerome Duquennoy" => "jerome@duquennoy.fr" }
s.ios.deployment_target = "8.0"
s.watchos.deployment_target = "2.0"
s.osx.deployment_target = "10.10"
s.swift_versions = ['4.0', '4.1', '4.2', '5.0']
s.module_name = 'Log4swift'
s.source = { :git => "https://github.com/igor-makarov/Log4s", :tag => "#{s.version}" }
s.source_files = "Log4swift", "Log4swift/**/*.{swift,h,m}", "Third parties/**/*.{h,m}"
s.public_header_files = ["Log4swift/log4swift.h", "Third Parties/NSLogger/*.h", "Log4swift/Objective-c wrappers/*.h"]
s.watchos.exclude_files = ["Third Parties/NSLogger/*", "Log4swift/Appenders/NSLoggerAppender.swift"]
end