-
Notifications
You must be signed in to change notification settings - Fork 615
/
YYWebImage.podspec
22 lines (19 loc) · 940 Bytes
/
YYWebImage.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'YYWebImage'
s.summary = 'Asynchronous image loading framework.'
s.version = '1.0.5'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'ibireme' => 'ibireme@gmail.com' }
s.social_media_url = 'http://blog.ibireme.com'
s.homepage = 'https://github.com/ibireme/YYWebImage'
s.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.source = { :git => 'https://github.com/ibireme/YYWebImage.git', :tag => s.version.to_s }
s.requires_arc = true
s.source_files = 'YYWebImage/*.{h,m}', 'YYWebImage/Categories/*.{h,m}'
s.public_header_files = 'YYWebImage/*.{h}', 'YYWebImage/Categories/*.{h}'
s.private_header_files = 'YYWebImage/Categories/_*.{h}'
s.frameworks = 'UIKit', 'CoreFoundation', 'QuartzCore', 'AssetsLibrary', 'ImageIO', 'Accelerate', 'MobileCoreServices'
s.dependency 'YYImage'
s.dependency 'YYCache'
end