forked from mbutan/MBPhotoPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMBPhotoPicker.podspec
More file actions
24 lines (18 loc) · 889 Bytes
/
MBPhotoPicker.podspec
File metadata and controls
24 lines (18 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "MBPhotoPicker"
s.version = "0.2.3"
s.summary = "Easy and quick in implementation Photo Picker, based on Slack's picker."
s.description = <<-DESC
"MBPhotoPicker is a simple Photo Picker based on used by Slack. In easy way allows you to take a photo, select from camera roll, use last photo taken or import from external apps."
DESC
s.homepage = "https://github.com/mbutan/MBPhotoPicker"
s.license = 'MIT'
s.author = { "Marcin Butanowicz" => "m.butan@gmail.com" }
s.source = { :git => "https://github.com/mbutan/MBPhotoPicker.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'Localizable' => ['Pod/Localizations/*']
}
end