From 4ea95b1342fe22379cc92cf8d13f78eaa77d2f87 Mon Sep 17 00:00:00 2001 From: Kevin Monahan Date: Wed, 11 Jul 2012 17:14:29 -0400 Subject: [PATCH] Add and update podspec --- SDWebImage.podspec | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 SDWebImage.podspec diff --git a/SDWebImage.podspec b/SDWebImage.podspec new file mode 100644 index 00000000..61c27785 --- /dev/null +++ b/SDWebImage.podspec @@ -0,0 +1,27 @@ +Pod::Spec.new do |s| + s.name = 'SDWebImage' + s.version = '2.6' + 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' } + s.source = { :git => 'https://github.com/rs/SDWebImage.git', :tag => '2.6' } + + 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!' + + s.source_files = 'SDWebImage/{SD,UI}*.{h,m}' + s.clean_paths = 'SDWebImage.xcodeproj', 'Examples' + + # 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