Skip to content

Commit

Permalink
CocoaLumberjack 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bpoplauschi committed Feb 14, 2014
1 parent 57e6d8d commit cb32aa4
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions CocoaLumberjack/1.8.1/CocoaLumberjack.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
Pod::Spec.new do |s|
s.name = 'CocoaLumberjack'
s.version = '1.8.1'
s.license = 'BSD'
s.summary = 'A fast & simple, yet powerful & flexible logging framework for Mac and iOS.'
s.homepage = 'https://github.com/CocoaLumberjack/CocoaLumberjack'
s.author = { 'Robbie Hanson' => 'robbiehanson@deusty.com' }
s.source = { :git => 'https://github.com/CocoaLumberjack/CocoaLumberjack.git',
:tag => "#{s.version}" }

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.ios.platform = :ios, '5.0'
s.osx.platform = :osx, '10.7'

s.preserve_paths = 'Lumberjack/**/README*'

s.public_header_files = 'Lumberjack/**/*.h'

s.default_subspec = 'Extensions'

s.subspec 'Core' do |ss|
ss.source_files = 'Lumberjack/*.{h,m}'
end

s.subspec 'Extensions' do |ss|
ss.dependency 'CocoaLumberjack/Core'
ss.source_files = 'Lumberjack/Extensions/*.{h,m}'
end

s.subspec 'CLI' do |ss|
ss.dependency 'CocoaLumberjack/Core'
ss.source_files = 'Lumberjack/CLI/*.{h,m}'
end

end

0 comments on commit cb32aa4

Please sign in to comment.