forked from 1and2papa/CTAssetsPickerController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CTAssetsPickerController.podspec
23 lines (21 loc) · 1.33 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.9.5'
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**. Requires **AssetsLibrary** and **MediaPlayer** frameworks.
DESC
s.homepage = 'https://github.com/chiunam/CTAssetsPickerController'
s.screenshot = '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.9.5' }
s.source_files = 'CTAssetsPickerController/*.{h,m}'
s.resource_bundles = { 'CTAssetsPickerController' => ['Resources/CTAssetsPicker.xcassets/*/*.png', 'Resources/*.lproj'] }
s.frameworks = 'AssetsLibrary', 'MediaPlayer'
s.requires_arc = true
end