forked from Alamofire/AlamofireImage
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAlamofireImage.podspec
More file actions
28 lines (24 loc) · 900 Bytes
/
AlamofireImage.podspec
File metadata and controls
28 lines (24 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Pod::Spec.new do |s|
s.name = 'AlamofireImage'
s.version = '2.4.1'
s.license = 'MIT'
s.summary = 'AlamofireImage is an image component library for Alamofire'
s.homepage = 'https://github.com/Alamofire/AlamofireImage'
s.social_media_url = 'http://twitter.com/AlamofireSF'
s.authors = { 'Alamofire Software Foundation' => 'info@alamofire.org' }
s.source = { :git => 'https://github.com/Alamofire/AlamofireImage.git', :tag => s.version }
s.source_files = 'Source/*.swift'
s.osx.exclude_files = [
'Source/UIButton+AlamofireImage.swift',
'Source/UIImage*.swift'
]
s.watchos.exclude_files = [
'Source/UIButton+AlamofireImage.swift',
'Source/UIImageView+AlamofireImage.swift'
]
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.dependency 'Alamofire', '~> 3.3'
end