2012-07-12 05:14:29 +08:00
|
|
|
Pod::Spec.new do |s|
|
|
|
|
s.name = 'SDWebImage'
|
2012-09-11 00:25:12 +08:00
|
|
|
s.version = '2.7'
|
2012-07-12 05:14:29 +08:00
|
|
|
s.platform = :ios
|
|
|
|
s.license = 'MIT'
|
|
|
|
s.summary = 'Asynchronous image downloader with cache support with an UIImageView category.'
|
|
|
|
s.homepage = 'https://github.com/rs/SDWebImage'
|
|
|
|
s.author = { 'Olivier Poitrey' => 'rs@dailymotion.com' }
|
2012-09-11 00:25:12 +08:00
|
|
|
s.source = { :git => 'https://github.com/rs/SDWebImage.git', :tag => '2.7' }
|
2012-07-12 05:14:29 +08:00
|
|
|
|
|
|
|
s.description = 'This library provides a category for UIImageVIew with support for remote ' \
|
|
|
|
'images coming from the web. It provides an UIImageView category adding web ' \
|
|
|
|
'image and cache management to the Cocoa Touch framework, an asynchronous ' \
|
|
|
|
'image downloader, an asynchronous memory + disk image caching with automatic ' \
|
|
|
|
'cache expiration handling, a guarantee that the same URL won\'t be downloaded ' \
|
|
|
|
'several times, a guarantee that bogus URLs won\'t be retried again and again, ' \
|
|
|
|
'and performances!'
|
|
|
|
|
2012-10-02 03:50:12 +08:00
|
|
|
s.source_files = 'SDWebImage/{MK,SD,UI}*.{h,m}'
|
2012-09-12 19:02:33 +08:00
|
|
|
s.framework = 'ImageIO'
|
2012-07-12 05:14:29 +08:00
|
|
|
|
|
|
|
# TODO currently CocoaPods always tries to install the subspec even if the dependency is on just 'SDWebImage'
|
|
|
|
#s.subspec 'MapKit' do
|
|
|
|
#s.source_files = 'MKAnnotationView+WebCache.*'
|
|
|
|
#s.framework = 'MapKit'
|
|
|
|
#end
|
|
|
|
end
|