forked from justinvallely/SwiftPhotoGallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftPhotoGallery.podspec
28 lines (23 loc) · 1.12 KB
/
SwiftPhotoGallery.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
#
# Be sure to run `pod lib lint SwiftPhotoGallery.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 = "SwiftPhotoGallery"
s.version = "3.0.0"
s.summary = "Photo gallery for iOS written in Swift"
s.description = <<-DESC
"Photo gallery for iOS written in Swift. Photos can be panned and zoomed. Includes a customizable page indicator, support for any orientation, and supports images of varying sizes. Includes unit tests."
DESC
s.homepage = "https://github.com/Inspirato/SwiftPhotoGallery"
s.license = 'GNU'
s.author = { "Justin Vallely" => "[email protected]" }
s.source = { :git => "https://github.com/Inspirato/SwiftPhotoGallery.git", :tag => "#{s.version}" }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'UIKit', 'Foundation'
end