forked from pinterest/PINRemoteImage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPINRemoteImage.podspec
More file actions
40 lines (35 loc) · 1.6 KB
/
PINRemoteImage.podspec
File metadata and controls
40 lines (35 loc) · 1.6 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
#
# Be sure to run `pod lib lint PINRemoteImage.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "PINRemoteImage"
s.version = "1.2.3"
s.summary = "A thread safe, performant, feature rich image fetcher"
s.homepage = "https://github.com/pinterest/PINRemoteImage"
s.license = 'Apache 2.0'
s.author = { "Garrett Moon" => "garrett@pinterest.com" }
s.source = { :git => "https://github.com/pinterest/PINRemoteImage.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/garrettmoon'
s.platform = :ios, '6.0'
s.requires_arc = true
# Include optional FLAnimatedImage module
s.default_subspec = 'FLAnimatedImage'
### Subspecs
s.subspec 'Core' do |cs|
cs.source_files = 'Pod/Classes/**/*.{h,m}'
cs.exclude_files = 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h', 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.m'
cs.public_header_files = 'Pod/Classes/**/*.h'
cs.frameworks = 'UIKit', 'ImageIO', 'CoreImage'
cs.dependency 'PINCache', '>=2.1'
end
s.subspec "FLAnimatedImage" do |fs|
fs.dependency 'PINRemoteImage/Core'
fs.source_files = 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h', 'Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.m'
fs.dependency 'FLAnimatedImage', '>= 1.0'
end
end