-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from davoda/cocoapods
Cocoapods Integration
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'TwitterLoggingService' | ||
s.version = '2.2.0' | ||
s.summary = 'Twitter Logging Service is a robust and performant logging framework for iOS clients' | ||
s.description = <<-DESC | ||
Twitter created a framework for logging in order to fulfill the following requirements: | ||
- fast (no blocking the main thread) | ||
- thread safe | ||
- as easy as NSLog in most situations | ||
- support pluggable "outputs streams" to which messages will be delivered | ||
- "outputs streams" filter messages rather than global filtering for all "output streams" | ||
- able to categorize log messages (log channels) | ||
- able to designate importance to log messages (log levels) | ||
- force opt-in for persisted logs (a security requirement, fulfilled by using the context feature of TLS) | ||
DESC | ||
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.source_files = 'Classes/*' | ||
s.public_header_files = 'Classes/*.h' | ||
end |