-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathKFLogFormatter.podspec
More file actions
22 lines (19 loc) · 965 Bytes
/
Copy pathKFLogFormatter.podspec
File metadata and controls
22 lines (19 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "KFLogFormatter"
s.version = "1.0.0"
s.summary = "A log message formatter for CocoaLumberjack."
s.description = <<-DESC
The KFLogFormatter class provides a log formatter for the CocoaLunmberjack
logging framework. It formats messages in the form:
LOG_LEVEL DATE, TIME -[CLASSNAME METHOD][Line LINE_NUMBER] LOG_MESSAGE
DESC
s.homepage = "http://pods.kf-interactive.com"
s.license = 'MIT'
s.author = { "Gunnar Herzog" => "gunnar.herzog@kf-interactive.com", "Rico Becker" => "rico.becker@kf-interactive.com" }
s.source = { :git => "https://github.com/trispo/KFLogFormatter.git", :tag => s.version.to_s }
s.requires_arc = true
s.source_files = 'Classes'
s.dependency 'CocoaLumberjack', '~> 1.6'
s.ios.deployment_target = "6.0"
s.osx.deployment_target = "10.7"
end