Skip to content

Commit

Permalink
Add and update podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
nivektric authored and Olivier Poitrey committed Sep 6, 2012
1 parent 0e07590 commit 4ea95b1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions 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

0 comments on commit 4ea95b1

Please sign in to comment.