-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGSImageViewer.podspec
19 lines (19 loc) · 982 Bytes
/
GSImageViewer.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "GSImageViewer"
s.version = "1.0.1"
s.summary = "GSImageViewer is an easy to use image viewer, which support multiple images and web image prefetch."
s.description = <<-DESC
GSImageViewer is an easy to use image viewer, it support two kind of datasource: UIImage and web image url.
Features:
Prefeatch
DESC
s.homepage = "https://github.com/Chren/GSImageViewer"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Aren" => "[email protected]" }
s.platform = :ios, '7.0'
s.source = { :git => 'https://github.com/Chren/GSImageViewer.git', :tag => '1.0.1' }
s.source_files = 'GSImagePreview/*.{h,m}'
s.resources = ['GSImagePreview/*.{xib}', 'GSImagePreview/Resources/GSImagePreview.bundle', 'GSImagePreview/Resources/Localizations/**']
s.requires_arc = true
s.dependency 'SDWebImage', '~> 3.7.3'
end