forked from twitter/ios-twitter-logging-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTwitterLoggingService.podspec
23 lines (20 loc) · 1.03 KB
/
TwitterLoggingService.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'TwitterLoggingService'
s.version = '2.3.0'
s.summary = 'Twitter Logging Service is a robust and performant logging framework for iOS and macOS'
s.description = 'Twitter created a framework for logging in order to fulfill the numerous needs of Twitter for iOS including being fast, safe, modular and versatile.'
s.homepage = 'https://github.com/twitter/ios-twitter-logging-service'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { 'Twitter' => '[email protected]' }
s.source = { :git => 'https://github.com/twitter/ios-twitter-logging-service.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.subspec 'Default' do |sp|
sp.source_files = 'Classes/**/*'
sp.public_header_files = 'Classes/**/*.h'
end
s.subspec 'ObjC' do |sp|
sp.source_files = 'Classes/**/*.{h,m,c,cpp,mm}'
sp.public_header_files = 'Classes/**/*.h'
end
s.default_subspec = 'Default'
end