forked from mwaterfall/MWPhotoBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MWPhotoBrowser.podspec
43 lines (43 loc) · 2.28 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 = '1.4.1'
s.license = 'MIT'
s.summary = 'A simple iOS photo browser with optional grid ' \
'view, captions and selections.'
s.description = 'MWPhotoBrowser can display one or more images by ' \
'providing either UIImage objects, or URLs to files, ' \
'web images or library assets. 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. The browser can also be used to allow the ' \
'user to select one or more photos using either the ' \
'grid or main image view.'
s.screenshots = ['https://raw.github.com/mwaterfall/MWPhotoBrowser/' \
'master/Preview/MWPhotoBrowser1.png',
'https://raw.github.com/mwaterfall/MWPhotoBrowser/' \
'master/Preview/MWPhotoBrowser2.png',
'https://raw.github.com/mwaterfall/MWPhotoBrowser/' \
'master/Preview/MWPhotoBrowser3.png',
'https://raw.github.com/mwaterfall/MWPhotoBrowser/' \
'master/Preview/MWPhotoBrowser4.png',
'https://raw.github.com/mwaterfall/MWPhotoBrowser/' \
'master/Preview/MWPhotoBrowser5.png',
'https://raw.github.com/mwaterfall/MWPhotoBrowser/' \
'master/Preview/MWPhotoBrowser6.png']
s.homepage = 'https://github.com/mwaterfall/MWPhotoBrowser'
s.author = { 'Michael Waterfall' => '[email protected]' }
s.source = {
:git => 'https://github.com/mwaterfall/MWPhotoBrowser.git',
:tag => '1.4.1'
}
s.platform = :ios, '5.1.1'
s.source_files = 'MWPhotoBrowser/Classes/*.{h,m}'
s.resources = 'MWPhotoBrowser/MWPhotoBrowser.bundle'
s.requires_arc = true
s.frameworks = 'MessageUI', 'ImageIO', 'QuartzCore', 'AssetsLibrary', 'MapKit'
s.dependency 'SDWebImage', '~> 3.7'
s.dependency 'MBProgressHUD', '~> 0.8'
s.dependency 'DACircularProgress'
s.dependency 'PSTCollectionView', '~> 1.2'
end