Created
December 12, 2012 15:25
-
-
Save rvenable/4268654 to your computer and use it in GitHub Desktop.
CocoaLumberjack without the iOS 6 build warnings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'CocoaLumberjack' | |
s.version = '1.6.1.custom' | |
s.license = 'BSD' | |
s.summary = 'A fast & simple, yet powerful & flexible logging framework for Mac and iOS.' | |
s.homepage = 'https://github.com/robbiehanson/CocoaLumberjack' | |
s.author = { 'Robbie Hanson' => '[email protected]' } | |
s.source = { :git => 'https://github.com/robbiehanson/CocoaLumberjack.git', | |
:commit => 'cce9f8029f29d1d44e9eedd0e5b958472694eac3' } | |
s.description = 'It is similar in concept to other popular logging frameworks such as log4j, ' \ | |
'yet is designed specifically for objective-c, and takes advantage of features ' \ | |
'such as multi-threading, grand central dispatch (if available), lockless ' \ | |
'atomic operations, and the dynamic nature of the objective-c runtime.' | |
s.requires_arc = true | |
s.source_files = 'Lumberjack' | |
s.clean_paths = 'Benchmarking', 'Xcode' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment