20 lines
851 B
Ruby
20 lines
851 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'NSLogger'
|
|
s.version = '1.0'
|
|
s.license = 'BSD'
|
|
s.summary = 'A modern, flexible logging tool.'
|
|
s.homepage = 'https://github.com/fpillet/NSLogger'
|
|
s.author = { 'Florent Pillet' => 'fpillet@gmail.com' }
|
|
s.source = { :git => 'https://github.com/fpillet/NSLogger.git', :tag => 'v1.0' }
|
|
|
|
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.frameworks = 'CFNetwork', 'SystemConfiguration'
|
|
|
|
|
|
end
|