-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathPhotoZoom.podspec
More file actions
26 lines (17 loc) · 890 Bytes
/
PhotoZoom.podspec
File metadata and controls
26 lines (17 loc) · 890 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
Pod::Spec.new do |s|
s.name = "PhotoZoom"
s.version = "0.0.2"
s.summary = "Photo viewing view which allows for tapping and zooming like Apple's iPhoto."
s.description = <<-DESC
Implementing your own photo viewer is hard. This makes it easier. Simply drop PZPhotoView into any place that
you want to allow an image to be pinched and zoomed. The sample project shows how to do it with a paging collection view.
DESC
s.homepage = "https://github.com/brennanMKE/PhotoZoom"
s.license = 'MIT'
s.author = { "Brennan Stehling" => "brennan@smallsharptools.com" }
s.social_media_url = "http://twitter.com/smallsharptools"
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/brennanMKE/PhotoZoom.git", :tag => "0.0.2" }
s.source_files = 'Classes/**/*.{h,m}'
s.requires_arc = true
end