-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDLPhotoPicker.podspec
executable file
·26 lines (25 loc) · 1.45 KB
/
DLPhotoPicker.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
Pod::Spec.new do |s|
s.name = 'DLPhotoPicker'
s.version = '2.1.2'
s.summary = 'iOS control that allows picking or displaying photos and videos from user\'s photo library.'
s.description = <<-DESC
DLPhotoPicker is an iOS controller that allows picking
or displaying photos and videos from user's photo library.
The usage and look-and-feel just similar to UIImagePickerController.
It uses **ARC** and **Photos** frameworks.
DESC
s.homepage = 'https://github.com/darling0825/DLPhotoPicker'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "darling0825" => "[email protected]" }
s.platform = :ios, '8.0'
s.ios.deployment_target = '8.0'
s.source = { :git => 'https://github.com/darling0825/DLPhotoPicker.git', :tag => s.version }
s.public_header_files = 'DLPhotoPicker/**/*.h'
s.source_files = 'DLPhotoPicker/**/*.{h,m}'
s.resource_bundles = { 'DLPhotoPicker' => ['DLPhotoPicker/Resources/*.xcassets', 'DLPhotoPicker/Resources/Localizations/*.lproj'] }
s.ios.frameworks = 'Photos'
s.requires_arc = true
s.dependency 'PureLayout', '~> 3.0.0'
s.dependency 'SVProgressHUD'
s.dependency 'TOCropViewController'
end