forked from vitoziv/VIPhotoView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVIPhotoView.podspec
More file actions
26 lines (22 loc) · 862 Bytes
/
VIPhotoView.podspec
File metadata and controls
26 lines (22 loc) · 862 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
25
26
Pod::Spec.new do |s|
s.name = 'VIPhotoView'
s.version = '1.1'
s.summary = 'Use VIPhotoView to view a photo with basic interactive gesture.'
s.description = <<-DESC
VIPhotoView is a view use to view a photo with simple and basic interactive gesture. Pinch to scale photo, double tap to scale photo, drag to scoll photo.
Support storyboard.
Add action call back;
DESC
s.homepage = 'https://github.com/forkpanda/VIPhotoView'
s.author = {
'Vito Zhang' => 'vvitozhang@gmail.com'
}
s.platform = :ios,'6.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = {
:git => 'https://github.com/forkpanda/VIPhotoView.git',
:tag => s.version.to_s
}
s.source_files = 'VIPhotoViewDemo/VIPhotoView/*.{h,m}'
s.requires_arc = true
end