This repository has been archived by the owner on Aug 3, 2023. It is now read-only.
forked from bufferapp/buffer-ios-image-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BFRImageViewer.podspec
25 lines (24 loc) · 1.55 KB
/
BFRImageViewer.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
Pod::Spec.new do |s|
s.name = "BFRImageViewer"
s.version = "1.0.29"
s.summary = "A turnkey solution to display photos and images of all kinds in your app."
s.description = <<-DESC
The BFRImageViewer is a turnkey solution to present images within your iOS app 🎉! It's based off of the excellent IDMPhotoBrowser, but tweaked for our own needs.
If features swipe gestures to dismiss, image scaling, zooming and panning, supports multiple images, image types, and plays nicely with 3D touch! We use it all over the place in Buffer for iOS :-).
DESC
s.homepage = "https://github.com/bufferapp/buffer-ios-image-viewer"
s.screenshot = "https://github.com/bufferapp/buffer-ios-image-viewer/blob/master/demo.gif?raw=true"
s.license = "MIT"
s.authors = {"Andrew Yates" => "[email protected]",
"Jordan Morgan" => "[email protected]",
"Humber Aquino" => "[email protected]"}
s.social_media_url = "https://twitter.com/bufferdevs"
s.source = { :git => "https://github.com/bufferapp/buffer-ios-image-viewer.git", :tag => '1.0.29' }
s.source_files = 'Classes', 'BFRImageViewController/**/*.{h,m}'
s.resources = ['BFRImageViewController/**/BFRImageViewerLocalizations.bundle','BFRImageViewController/**/*.{png}']
s.platform = :ios, '8.0'
s.requires_arc = true
s.frameworks = "UIKit", "Photos"
s.dependency 'DACircularProgress'
s.dependency 'PINRemoteImage', '~> 3.0.0-beta.7'
end