SDWebImage/SDWebImage.podspec

31 lines
1.4 KiB
Plaintext
Raw Normal View History

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-08-14 01:22:25 +08:00
s.version = '3.4'
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-08-14 01:22:25 +08:00
s.source = { :git => 'https://github.com/rs/SDWebImage.git', :tag => '3.4' }
2012-07-12 05:14:29 +08:00
s.description = 'This library provides a category for UIImageView with support for remote ' \
2013-01-16 19:10:45 +08:00
'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
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
s.dependency 'libwebp'
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