forked from logkit/logkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogKit.podspec
More file actions
22 lines (19 loc) · 1 KB
/
LogKit.podspec
File metadata and controls
22 lines (19 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'LogKit'
s.version = '2.3.2'
s.authors = 'Justin Pawela', 'The LogKit Project'
s.license = { :type => 'BSD', :file => 'LICENSE.txt' }
s.summary = 'An efficient logging library for OS X, iOS, tvOS, and watchOS – written in Swift.'
s.description = 'An efficient logging library for OS X, iOS, tvOS, and watchOS – written in Swift. Log to console, file, HTTP service, or your own endpoint. Simple to get started, but smartly customizable.'
s.homepage = 'http://www.logkit.info/'
s.source = { :git => 'https://github.com/logkit/logkit.git', :tag => s.version }
s.documentation_url = 'http://www.logkit.info/docs/2.3/'
s.osx.deployment_target = '10.9'
s.ios.deployment_target = '8.0'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.frameworks = 'Foundation'
s.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '-DLogKitAdvertisingIDDisabled' }
s.source_files = 'Sources/*.swift'
end