-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathInstaZoom.podspec
30 lines (24 loc) · 1.04 KB
/
InstaZoom.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
28
29
30
#
# Be sure to run `pod lib lint InstaZoom.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "InstaZoom"
s.version = "0.0.2"
s.summary = "Replicate Instagram zooming feature."
s.description = <<-DESC
InstaZoom lets you replicate easily the Instagram zooming feature
on UIImageView.
DESC
s.homepage = "https://github.com/paulemmanuel-garcia/InstaZoom"
s.license = 'MIT'
s.author = { "Paul-Emmanuel Garcia" => "[email protected]" }
s.source = { :git => "https://github.com/paulemmanuel-garcia/InstaZoom.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/pemgarcia'
s.platform = :ios, '9.0'
s.requires_arc = true
s.source_files = 'Sources/'
end