forked from avito-tech/Paparazzo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPaparazzo.podspec
45 lines (37 loc) · 1.54 KB
/
Paparazzo.podspec
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
Pod::Spec.new do |s|
s.name = 'Paparazzo'
s.module_name = 'Paparazzo'
s.version = '1.1.0'
s.summary = "iOS component for picking and editing photos from camera and user's photo library"
s.homepage = 'https://github.com/avito-tech/Paparazzo'
s.license = 'MIT'
s.author = { 'Andrey Yutkin' => '[email protected]' }
s.source = { :git => 'https://github.com/avito-tech/Paparazzo.git', :tag => "#{s.version}" }
s.platform = :ios, '8.0'
s.ios.deployment_target = "8.0"
s.requires_arc = true
s.frameworks = 'UIKit', 'Photos', 'ImageIO', 'MobileCoreServices', 'GLKit', 'OpenGLES', 'CoreMedia', 'CoreVideo', 'AVFoundation', 'QuartzCore'
s.dependency 'JNWSpringAnimation'
s.dependency 'ImageSource/Core'
s.dependency 'ImageSource/PHAsset'
s.dependency 'ImageSource/Local'
s.dependency 'ImageSource/Remote'
s.default_subspec = 'Core', 'Marshroute', 'AlamofireImage'
s.subspec 'AlamofireImage' do |ai|
ai.dependency 'Paparazzo/Core'
ai.dependency 'ImageSource/AlamofireImage'
end
s.subspec 'SDWebImage' do |sd|
sd.dependency 'Paparazzo/Core'
sd.dependency 'ImageSource/SDWebImage'
end
s.subspec 'Core' do |cs|
cs.source_files = 'Paparazzo/Core/**/*'
cs.resources = ['Paparazzo/Assets/Assets.xcassets']
end
s.subspec 'Marshroute' do |ms|
ms.dependency 'Paparazzo/Core'
ms.dependency 'Marshroute'
ms.source_files = 'Paparazzo/Marshroute/**/*'
end
end