forked from mikaoj/BSImagePicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BSImagePicker.podspec
32 lines (29 loc) · 1.58 KB
/
BSImagePicker.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
29
30
31
32
Pod::Spec.new do |s|
s.name = "BSImagePicker"
s.version = "2.2.0"
s.summary = "BSImagePicker is a multiple image picker for iOS. UIImagePickerController replacement"
s.description = <<-DESC
A mix between the native iOS gallery and facebooks image picker. Allows you to preview and select multiple images.
It is intended as a replacement for UIImagePickerController for both selecting and taking photos.
DESC
s.homepage = "https://github.com/mikaoj/BSImagePicker"
s.screenshots = ["https://raw.githubusercontent.com/mikaoj/BSImagePicker/master/Misc/Screenshots/select_portrait.png",
"https://raw.githubusercontent.com/mikaoj/BSImagePicker/master/Misc/Screenshots/album_portrait.png",
"https://raw.githubusercontent.com/mikaoj/BSImagePicker/master/Misc/Screenshots/preview_portrait.png"]
s.license = 'MIT'
s.author = { "Joakim Gyllström" => "[email protected]" }
s.source = { :git => "https://github.com/mikaoj/BSImagePicker.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'BSImagePicker' => ['Pod/Assets/*.png',
'Pod/Assets/*.xib',
'Pod/Assets/*.storyboard',
'Pod/Assets/*.xcassets',
'Pod/Assets/*.png']
}
s.frameworks = 'UIKit', 'Photos'
s.dependency 'UIImageViewModeScaleAspect', '~> 1.3'
s.dependency 'BSGridCollectionViewLayout', '~> 1.0'
end