forked from dzenbot/DZNPhotoPickerController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDZNPhotoPickerController.podspec
More file actions
39 lines (35 loc) · 1.99 KB
/
Copy pathDZNPhotoPickerController.podspec
File metadata and controls
39 lines (35 loc) · 1.99 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
@dznversion = "1.5"
@afversion = "2.3.1"
@sdversion = "3.7"
Pod::Spec.new do |s|
s.name = "DZNPhotoPickerController"
s.version = @dznversion
s.summary = "A photo search/picker for iOS using popular providers like 500px, Flickr, Intagram, Google Images, etc."
s.description = "This framework tries to mimic as close as possible the native UIImagePickerController API for iOS7, in terms of features, appearance and behaviour."
s.homepage = "https://github.com/dzenbot/DZNPhotoPickerController"
s.screenshots = "https://raw.githubusercontent.com/dzenbot/DZNPhotoPickerController/master/Docs/screenshots.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Ignacio Romero Z." => "iromero@dzen.cl" }
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/dzenbot/UIPhotoPickerController.git", :tag => "v#{s.version}" }
s.source_files = 'Classes', 'Source/Classes/*.{h,m}'
s.exclude_files = 'Source/Classes/UIImagePickerController/**/*.{h,m}'
s.resources = 'Resources', 'Source/Resources/**/*.*'
s.requires_arc = true
s.prefix_header_contents = '#import <MobileCoreServices/MobileCoreServices.h>',
'#import <SystemConfiguration/SystemConfiguration.h>'
s.header_mappings_dir = 'Source'
s.dependency 'DZNPhotoPickerController/DZNPhotoService'
s.dependency 'DZNPhotoPickerController/UIImagePickerControllerExtended'
s.dependency 'AFNetworking', @afversion
s.dependency 'SDWebImage', @sdversion
s.dependency 'DZNEmptyDataSet', '1.3.3'
s.subspec 'DZNPhotoService' do |service|
service.source_files = 'Source/Classes/DZNPhotoService/*.{h,m}',
'Source/Classes/DZNPhotoPickerControllerConstants.h'
end
s.subspec 'UIImagePickerControllerExtended' do |extension|
extension.source_files = 'Source/Classes/UIImagePickerController/*.{h,m}',
'Source/Classes/DZNPhotoPickerControllerConstants.h'
end
end