forked from x2on/FSImageViewer
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFSImageViewer.podspec
More file actions
27 lines (22 loc) · 928 Bytes
/
FSImageViewer.podspec
File metadata and controls
27 lines (22 loc) · 928 Bytes
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
Pod::Spec.new do |s|
s.name = "FSImageViewer"
s.version = "4.0"
s.summary = "FSImageViewer is a photo viewer for iOS."
s.homepage = "https://github.com/x2on/FSImageViewer"
s.social_media_url = 'https://twitter.com/x2on'
s.screenshot = 'https://raw.github.com/x2on/FSImageViewer/master/screen.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Felix Schulze" => "code@felixschulze.de" }
s.source = {
:git => "https://github.com/x2on/FSImageViewer.git",
:tag => s.version.to_s
}
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'FSImageViewer/FS*.{h,m}'
s.resources = 'FSImageViewer.bundle'
s.framework = 'Foundation', 'UIKit', 'CoreGraphics', 'QuartzCore', 'Security', 'CFNetwork'
s.dependency 'AFNetworking', '~> 3.0'
s.dependency 'EGOCache', '~> 2.1'
s.dependency 'UAProgressView', '~> 0.1'
end