forked from kean/DFImageManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDFImageManager.podspec
More file actions
51 lines (43 loc) · 1.84 KB
/
DFImageManager.podspec
File metadata and controls
51 lines (43 loc) · 1.84 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
44
45
46
47
48
49
50
51
Pod::Spec.new do |s|
s.name = "DFImageManager"
s.version = "0.3.1"
s.summary = "Advanced iOS framework for loading images. Zero config, yet immense customization and extensibility."
s.homepage = "https://github.com/kean/DFImageManager"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Alexander Grebenyuk"
s.social_media_url = "https://twitter.com/a_grebenyuk"
s.platform = :ios
s.ios.deployment_target = "7.0"
s.source = { :git => "https://github.com/kean/DFImageManager.git", :tag => s.version.to_s }
s.requires_arc = true
s.default_subspecs = "Core", "UI", "NSURLSession", "PhotosKit", "AssetsLibrary"
s.subspec "Core" do |ss|
ss.source_files = "DFImageManager/Source/Core/**/*.{h,m}"
end
s.subspec "UI" do |ss|
ss.dependency "DFImageManager/Core"
ss.source_files = "DFImageManager/Source/UI/**/*.{h,m}"
end
s.subspec "NSURLSession" do |ss|
ss.dependency "DFImageManager/Core"
ss.source_files = "DFImageManager/Source/NSURLSession/**/*.{h,m}"
end
s.subspec "AFNetworking" do |ss|
ss.dependency "DFImageManager/Core"
ss.dependency "AFNetworking/NSURLSession", "~> 2.0"
ss.source_files = "DFImageManager/Source/AFNetworking/**/*.{h,m}"
end
s.subspec "PhotosKit" do |ss|
ss.dependency "DFImageManager/Core"
ss.source_files = "DFImageManager/Source/PhotosKit/**/*.{h,m}"
end
s.subspec "AssetsLibrary" do |ss|
ss.dependency "DFImageManager/Core"
ss.source_files = "DFImageManager/Source/AssetsLibrary/**/*.{h,m}"
end
s.subspec "GIF" do |ss|
ss.dependency "DFImageManager/Core"
ss.dependency "FLAnimatedImage", "~> 1.0"
ss.source_files = "DFImageManager/Source/GIF/**/*.{h,m}"
end
end