forked from twitter/ios-twitter-image-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 1
/
TwitterImagePipeline.podspec
16 lines (16 loc) · 1.12 KB
/
TwitterImagePipeline.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'
s.resource_bundles = {'TwitterImagePipeline' => ['Sources/TwitterImagePipeline/PrivacyInfo.xcprivacy']}
end