2012-07-12 05:14:29 +08:00
|
|
|
Pod::Spec.new do |s|
|
2013-01-16 19:10:45 +08:00
|
|
|
s.name = 'SDWebImage'
|
2013-03-13 06:40:18 +08:00
|
|
|
s.version = '3.2'
|
2013-01-16 19:10:45 +08:00
|
|
|
s.platform = :ios, '5.0'
|
|
|
|
s.license = 'MIT'
|
|
|
|
s.summary = 'Asynchronous image downloader with cache support with an UIImageView category.'
|
2012-07-12 05:14:29 +08:00
|
|
|
s.homepage = 'https://github.com/rs/SDWebImage'
|
2013-01-16 19:10:45 +08:00
|
|
|
s.author = { 'Olivier Poitrey' => 'rs@dailymotion.com' }
|
2013-03-13 06:40:18 +08:00
|
|
|
s.source = { :git => 'https://github.com/rs/SDWebImage.git', :tag => '3.2' }
|
2012-07-12 05:14:29 +08:00
|
|
|
|
2013-01-16 19:10:45 +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-07-12 05:14:29 +08:00
|
|
|
|
2013-01-16 19:10:45 +08:00
|
|
|
s.requires_arc = true
|
2013-04-29 17:23:29 +08:00
|
|
|
s.source_files = 'SDWebImage/{NS,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'
|
2013-01-16 19:10:45 +08:00
|
|
|
s.subspec 'MapKit' do |mk|
|
|
|
|
mk.source_files = 'SDWebImage/MKAnnotationView+WebCache.*'
|
|
|
|
mk.framework = 'MapKit'
|
|
|
|
end
|
2012-07-12 05:14:29 +08:00
|
|
|
end
|