forked from 1and2papa/CTAssetsPickerController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCTAssetsPickerController.podspec
23 lines (21 loc) · 1.17 KB
/
CTAssetsPickerController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "CTAssetsPickerController"
s.version = "2.2.0"
s.summary = "iOS control that allows picking multiple photos and videos from user's photo library."
s.description = <<-DESC
CTAssetsPickerController is an iOS controller that allows picking
multiple photos and videos from user's photo library.
The usage and look-and-feel just similar to UIImagePickerController.
It uses **ARC** and requires **AssetsLibrary** framework.
DESC
s.homepage = "https://github.com/chiunam/CTAssetsPickerController"
s.screenshots = "https://raw.github.com/chiunam/CTAssetsPickerController/master/Screenshot.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Clement T" => "[email protected]" }
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/chiunam/CTAssetsPickerController.git", :tag => "v2.2.0" }
s.source_files = "CTAssetsPickerController/*.{h,m}"
s.resource = "CTAssetsPickerController/Images.xcassets/*/*.png"
s.framework = "AssetsLibrary"
s.requires_arc = true
end