-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPOWImageGallery.podspec
More file actions
32 lines (26 loc) · 1.27 KB
/
POWImageGallery.podspec
File metadata and controls
32 lines (26 loc) · 1.27 KB
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
#
# Be sure to run `pod lib lint POWImageGallery.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 = 'POWImageGallery'
s.version = '0.1.6'
s.summary = 'Image gallery view controller for iOS apps.'
s.description = <<-DESC
Image gallery view controller for iOS apps. Written in Swift 4 for XCode 9.
DESC
s.homepage = 'https://github.com/OpsLabJPL/POWImageGallery'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { 'drmarkpowell' => 'Mark.Powell@jpl.nasa.gov' }
s.source = { :git => 'https://github.com/OpsLabJPL/POWImageGallery.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'POWImageGallery/Classes/**/*.{swift,h,m}'
s.resources = ['POWImageGallery/Assets/**/*.{storyboard,xib}',
'POWImageGallery/Assets/**/*.{png,PNG,jpg,JPG,xcassets}']
s.dependency 'SDWebImage', '~> 4.2'
s.dependency 'MBProgressHUD', '~> 1.1'
end