forked from mikaoj/BSImagePicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BSImagePicker.podspec
executable file
·30 lines (27 loc) · 1.22 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
Pod::Spec.new do |s|
s.name = "BSImagePicker"
s.version = "2.8.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.swift_version = '4.1'
s.source_files = 'Source/**/*.swift'
s.resource_bundles = {
'BSImagePicker' => ['Assets/*.png',
'Assets/*.xib',
'Assets/*.storyboard',
'Assets/*.xcassets',
'Assets/*.png']
}
s.frameworks = 'UIKit', 'Photos'
s.dependency 'BSImageView', '1.0.0'
s.dependency 'BSGridCollectionViewLayout', '1.2.0'
end