forked from mikaoj/BSImagePicker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBSImagePicker.podspec
29 lines (26 loc) · 1.23 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
Pod::Spec.new do |s|
s.name = "BSImagePicker"
s.version = "2.6.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.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/**/*.swift'
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.5'
s.dependency 'BSGridCollectionViewLayout', '~> 1.2.0'
end