-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathSHGalleryView.podspec
32 lines (25 loc) · 1.35 KB
/
SHGalleryView.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
31
32
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# These will help people to find your library, and whilst it
# can feel like a chore to fill in it's definitely to your advantage. The
# summary should be tweet-length, and the description more in depth.
#
s.name = "SHGalleryView"
s.version = "0.1.7"
s.summary = "An iOS Gallery View for Images and Videos"
s.description = <<-DESC
This is a Page View Controllers based Gallery for Images and Videos which you can use to showcase your media items. Images support zoom/pinch and you can play videos in the same flow.
DESC
s.homepage = "https://github.com/grevolution/SHGalleryView"
s.license = {:type => 'MIT'}
s.author = { "Shan Ul Haq" => "[email protected]" }
s.platform = :ios
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/grevolution/SHGalleryView.git", :tag => s.version }
s.source_files = "SHGalleryView/SHGalleryView/*.{h,m}"
s.resources = "SHGalleryView/SHGalleryView/*.{xib}"
s.framework = "MediaPlayer"
s.requires_arc = true
s.dependency "AFNetworking/UIKit", "~>2.2"
end