-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRPImageLoader.podspec
More file actions
43 lines (35 loc) · 1.44 KB
/
RPImageLoader.podspec
File metadata and controls
43 lines (35 loc) · 1.44 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
41
42
43
Pod::Spec.new do |s|
s.name = 'RPImageLoader'
s.version = '1.0.1'
s.summary = 'Image loading made easy.'
s.description = <<-DESC
RPImageLoader is a wrapper for asynchronous image-loading libraries for iOS.
DESC
s.homepage = 'https://github.com/RedP4nda/RPImageLoader'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'mrcloud' => 'florianp37@me.com' }
s.source = { :git => 'https://github.com/RedP4nda/RPImageLoader.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.default_subspec = 'Core'
s.subspec 'Core' do |a|
a.source_files = 'RPImageLoader/Classes/Core/**/*'
end
s.subspec 'KingFisher' do |a|
a.source_files = 'RPImageLoader/Classes/KingFisher/**/*'
a.dependency 'RPImageLoader/Core'
a.dependency 'Kingfisher', '~> 3.5.0'
a.xcconfig = { 'OTHER_SWIFT_FLAGS' => '$(inherited) -DRPKingfisher' }
end
s.subspec 'Nuke' do |a|
a.source_files = 'RPImageLoader/Classes/Nuke/**/*'
a.dependency 'RPImageLoader/Core'
a.dependency 'Nuke', '~> 5.1'
a.xcconfig = { 'OTHER_SWIFT_FLAGS' => '$(inherited) -DRPNuke' }
end
s.subspec 'SDWebImage' do |a|
a.source_files = 'RPImageLoader/Classes/SDWebImage/**/*'
a.dependency 'RPImageLoader/Core'
a.dependency 'SDWebImage', '~> 4.0.0'
a.xcconfig = { 'OTHER_SWIFT_FLAGS' => '$(inherited) -DRPSDWebImage' }
end
end