-
Notifications
You must be signed in to change notification settings - Fork 1
/
BRCocoaLumberjack.podspec
34 lines (26 loc) · 1.19 KB
/
BRCocoaLumberjack.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
Pod::Spec.new do |s|
s.name = "BRCocoaLumberjack"
s.version = "2.0.5"
s.summary = "Easy CocoaLumberjack for iOS."
s.description = <<-DESC
This project provides a way to integrate the
[CocoaLumberjack](https://github.com/robbiehanson/CocoaLumberjack) project easily
into your own project with log levels configurable per Cocoa class, similar to what
the venerable [log4j](http://logging.apache.org/) provides in Java.
DESC
s.homepage = "https://github.com/Blue-Rocket/BRCocoaLumberjack"
s.license = "Apache License, Version 2.0"
s.author = { "Matt Magoffin" => "[email protected]" }
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/Blue-Rocket/BRCocoaLumberjack.git",
:tag => s.version.to_s }
s.source_files = "BRCocoaLumberjack/BRCocoaLumberjack.h",
"BRCocoaLumberjack/BRCocoaLumberjack/*.{h,m}"
s.requires_arc = true
s.prefix_header_contents = <<-PCH
#ifdef __OBJC__
#import <BRCocoaLumberjack/BRCocoaLumberjack.h>
#endif
PCH
s.dependency 'CocoaLumberjack', '~> 3.7'
end