Skip to content

Instantly share code, notes, and snippets.

@radex
Created March 29, 2013 18:42
Show Gist options
  • Save radex/5272735 to your computer and use it in GitHub Desktop.
Save radex/5272735 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'CocoaLumberjack'
s.version = '1.6.1'
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' => 'robbiehanson@deusty.com' }
s.source = { :git => 'https://github.com/robbiehanson/CocoaLumberjack.git',
:commit => 'b5fbf2da1fa35f208683f9afa441b071cc621cd0' }
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', 'Lumberjack/Extensions'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment