15 lines
605 B
Ruby
15 lines
605 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'AFImageDownloader'
|
|
s.version = '1.0.0'
|
|
s.summary = 'Downloads JPEG images asynchronously and decompresses them on a background thread.'
|
|
s.author = { 'Ash Furrow' => 'ash@ashfurrow.com' }
|
|
s.source = { :git => 'https://github.com/AshFurrow/AFImageDownloader.git', :tag => '1.0.0' }
|
|
s.source_files = 'Classes', '*.{h,m}'
|
|
s.license = 'MIT'
|
|
s.homepage = 'https://github.com/AshFurrow/AFImageDownloader'
|
|
s.dependency 'Kiwi', '~> 1.1.1'
|
|
s.requires_arc = true
|
|
s.platform = :ios, '5.0'
|
|
s.license = 'MIT'
|
|
end
|