forked from justinvallely/SwiftPhotoGallery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSwiftPhotoGallery.podspec
23 lines (17 loc) · 948 Bytes
/
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
Pod::Spec.new do |s|
s.name = "SwiftPhotoGallery"
s.version = "3.3.1"
s.summary = "Photo gallery for iOS and tvOS written in Swift"
s.description = <<-DESC
"Photo gallery for iOS and tvOS written in Swift. Photos can be panned and zoomed (iOS). Includes a customizable page indicator, support for any orientation (iOS), and supports images of varying sizes. Includes unit tests."
DESC
s.homepage = "https://github.com/Inspirato/SwiftPhotoGallery"
s.license = 'Apache-2.0'
s.author = { "Justin Vallely" => "jvallely@inspirato.com" }
s.source = { :git => "https://github.com/Inspirato/SwiftPhotoGallery.git", :tag => "#{s.version}" }
s.ios.deployment_target = "9.0"
s.tvos.deployment_target = "10.0"
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'UIKit', 'Foundation'
end