-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathVertigo.podspec
18 lines (18 loc) · 964 Bytes
/
Vertigo.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "Vertigo"
s.version = "0.1"
s.summary = "A simple image viewer which includes a custom transition that mimics the iOS 7 Photos app image zoom effect."
s.description = <<-DESC
**Vertigo** is a simple image viewer which includes a **custom view controller transition** that mimics the new **iOS 7 Photos app** image zoom transition effect.
DESC
s.homepage = "https://github.com/gonzalezreal/Vertigo"
s.screenshots = "https://raw.github.com/gonzalezreal/Vertigo/master/VertigoSample/VertigoSample.gif"
s.license = 'MIT'
s.author = { 'Guillermo Gonzalez' => '[email protected]' }
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/gonzalezreal/Vertigo.git", :tag => "0.1" }
s.source_files = 'Vertigo'
s.resources = "Vertigo/TGRImageViewController.xib"
s.framework = 'UIKit'
s.requires_arc = true
end