forked from twitter/ios-twitter-image-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add simplified Podspec (no support for codecs)
- Loading branch information
1 parent
afb19b5
commit 794b2bd
Showing
1 changed file
with
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'TwitterImagePipeline' | ||
s.version = '2.25.2' | ||
s.compiler_flags = '-DTIP_PROJECT_VERSION=2.25' | ||
s.summary = 'Twitter Image Pipeline is a robust and performant image loading and caching framework for iOS' | ||
s.description = 'Twitter created a framework for image loading/caching 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-image-pipeline' | ||
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' } | ||
s.author = { 'Twitter' => 'opensource@twitter.com' } | ||
s.source = { :git => 'https://github.com/twitter/ios-twitter-image-pipeline.git', :tag => s.version.to_s } | ||
s.ios.deployment_target = '10.0' | ||
s.swift_versions = [ 5.0 ] | ||
s.source_files = 'Sources/TwitterImagePipeline/**/*.{h,m}', 'Sources/TIPUtils/**/*.{h,m}' | ||
s.public_header_files = 'Sources/TwitterImagePipeline/include/*.h' | ||
end |