forked from wordpress-mobile/MediaPicker-iOS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
WPMediaPicker.podspec
28 lines (25 loc) · 1.21 KB
/
WPMediaPicker.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
Pod::Spec.new do |s|
s.name = "WPMediaPicker"
s.version = "0.6.0"
s.summary = "WPMediaPicker is an iOS controller that allows capture and picking of media assets."
s.description = <<-DESC
WPMediaPicker is an iOS controller that allows capture and picking of media assets.
It allows:
* Multiple selection of media.
* Capture of new media while selecting
DESC
s.homepage = "https://github.com/wordpress-mobile/MediaPicker-iOS"
s.screenshots = "https://raw.githubusercontent.com/wordpress-mobile/WPMediaPicker/master/screenshots_1.jpg"
s.license = 'GPL'
s.author = { "WordPress" => "[email protected]" }
s.source = { :git => "https://github.com/wordpress-mobile/MediaPicker-iOS.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.resource_bundles = {
'WPMediaPicker' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit', 'AssetsLibrary', 'AVFoundation', 'ImageIO'
s.weak_framework = 'Photos'
end