This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
forked from mwaterfall/MWPhotoBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMWPhotoBrowser.podspec
43 lines (37 loc) · 1.96 KB
/
MWPhotoBrowser.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Pod::Spec.new do |s|
s.name = 'MWPhotoBrowser'
s.version = '2.1.2'
s.license = 'MIT'
s.summary = 'A simple iOS photo and video browser with optional grid view, captions and selections.'
s.description = <<-DESCRIPTION
MWPhotoBrowser can display one or more images or videos by providing either UIImage
objects, PHAsset objects, or URLs to library assets, web images/videos or local files.
The photo browser handles the downloading and caching of photos from the web seamlessly.
Photos can be zoomed and panned, and optional (customisable) captions can be displayed.
DESCRIPTION
s.screenshots = [
'https://raw.github.com/mwaterfall/MWPhotoBrowser/master/Screenshots/MWPhotoBrowser1.png',
'https://raw.github.com/mwaterfall/MWPhotoBrowser/master/Screenshots/MWPhotoBrowser2.png',
'https://raw.github.com/mwaterfall/MWPhotoBrowser/master/Screenshots/MWPhotoBrowser3.png',
'https://raw.github.com/mwaterfall/MWPhotoBrowser/master/Screenshots/MWPhotoBrowser4.png',
'https://raw.github.com/mwaterfall/MWPhotoBrowser/master/Screenshots/MWPhotoBrowser5.png',
'https://raw.github.com/mwaterfall/MWPhotoBrowser/master/Screenshots/MWPhotoBrowser6.png'
]
s.homepage = 'https://github.com/mwaterfall/MWPhotoBrowser'
s.author = { 'Michael Waterfall' => '[email protected]' }
s.social_media_url = 'https://twitter.com/mwaterfall'
s.source = {
:git => 'https://github.com/Immoweb/MWPhotoBrowser.git',
:tag => s.version.to_s
}
s.platform = :ios, '9.0'
s.source_files = 'Sources/MWPhotoBrowser/**/*.{h,m}'
s.resource_bundles = {
'MWPhotoBrowser' => ['Sources/MWPhotoBrowser/Resources/Media.xcassets', 'Sources/MWPhotoBrowser/Resources/*.lproj/*.strings']
}
s.requires_arc = true
s.frameworks = 'ImageIO', 'QuartzCore', 'AssetsLibrary', 'MediaPlayer'
s.weak_frameworks = 'Photos'
s.dependency 'MBProgressHUD', '~> 1.2'
s.dependency 'SDWebImage'
end