-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBUKPhotoBrowser.podspec
More file actions
21 lines (21 loc) · 955 Bytes
/
BUKPhotoBrowser.podspec
File metadata and controls
21 lines (21 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "BUKPhotoBrowser"
s.version = "1.1.0"
s.summary = "A photo browser library."
s.description = <<-DESC
BUKPhotoBrowser is used to view large photos. You can pinch to scale the photo size,
tap to dismiss browser, pan to switch photo and so on. You can alse custom toolbar
for special usage.
DESC
s.homepage = 'https://github.com/iException/BUKPhotoBrowser'
s.license = 'MIT'
s.author = { "hyice" => "hy_ice719@163.com" }
s.source = { :git => "https://github.com/iException/BUKPhotoBrowser.git", :tag => "v#{s.version.to_s}" }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'BUKPhotoBrowser' => ['Pod/Assets/*.png']
}
s.dependency 'SDWebImage', '~> 4.0'
end