-
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 #3 from RishatShamsutdinov/master
Support non-Swift projects - Thank you Rishat
- Loading branch information
Showing
4 changed files
with
24 additions
and
3 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'TwitterLoggingService' | ||
s.version = '2.2.0' | ||
s.version = '2.2.1' | ||
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: | ||
|
@@ -18,6 +18,15 @@ Twitter created a framework for logging in order to fulfill the following requir | |
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' | ||
s.public_header_files = 'Classes/**/*.h' | ||
|
||
s.subspec 'Default' do |sp| | ||
sp.source_files = 'Classes/**/*' | ||
end | ||
|
||
s.subspec 'ObjC' do |sp| | ||
sp.source_files = 'Classes/**/*.{h,m,c,cpp,mm}' | ||
end | ||
|
||
s.default_subspec = 'Default' | ||
end |