forked from Tintenklecks/zoomPopup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zoomPopup.podspec
27 lines (21 loc) · 989 Bytes
/
zoomPopup.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
Pod::Spec.new do |s|
s.name = "zoomPopup"
s.version = "0.0.2"
s.summary = "Show view in popover with zoom effect"
s.description = <<-DESC
Supports showing a view in a popover
* Think: Why did you write this? What is the focus? What does it do?
* CocoaPods will be using this to generate tags, and improve search results.
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC
s.homepage = "https://github.com/Tintenklecks/zoomPopup"
s.license = "Unknown"
s.author = { "Tintenklecks" =>"[email protected]"}
s.platform = :ios
s.source = { :git => "https://github.com/Oggerschummer/zoomPopup.git"}
s.source_files = "ZoomOutControl"
s.resources = ["ZoomOutControl/**/*.png"]
s.frameworks = "Foundation", "UIKit"
s.requires_arc = true
end