forked from fpillet/NSLogger
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNSLogger.podspec
18 lines (16 loc) · 925 Bytes
/
NSLogger.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'NSLogger'
s.version = '1.1'
s.license = 'BSD'
s.summary = 'A modern, flexible logging tool.'
s.homepage = 'https://github.com/fpillet/NSLogger'
s.author = { 'Florent Pillet' => '[email protected]' }
s.source = { :git => 'https://github.com/fpillet/NSLogger.git', :tag => 'v1.1' }
s.description = 'NSLogger is a high perfomance logging utility which displays traces emitted by ' \
'client applications running on Mac OS X or iOS (iPhone OS). It replaces your ' \
'usual NSLog()-based traces and provides powerful additions like display ' \
'filtering, image and binary logging, traces buffering, timing information, etc.'
s.source_files = 'Client Logger/iOS/*.{h,m}'
s.ios.frameworks = 'CFNetwork', 'SystemConfiguration'
s.osx.frameworks = 'CFNetwork', 'SystemConfiguration', 'CoreServices'
end