forked from CocoaLumberjack/CocoaLumberjack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CocoaLumberjack.podspec
33 lines (26 loc) · 1.21 KB
/
CocoaLumberjack.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
Pod::Spec.new do |s|
s.name = 'CocoaLumberjack'
s.version = '1.6.4'
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',
: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.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
end