-
Notifications
You must be signed in to change notification settings - Fork 55
/
BFRImageViewer.podspec
24 lines (23 loc) · 1.42 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
Pod::Spec.new do |s|
s.name = "BFRImageViewer"
s.version = "1.3.1"
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 🎉!
If features swipe gestures to dismiss, parallax scrolling, image scaling, zooming and panning, supports multiple images, image types, and plays nicely with live photos! 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]"}
s.social_media_url = "https://twitter.com/bufferdevs"
s.source = { :git => "https://github.com/bufferapp/buffer-ios-image-viewer.git", :tag => '1.3.1' }
s.source_files = 'Classes', 'BFRImageViewController/**/*.{h,m}'
s.resources = ['BFRImageViewController/**/BFRImageViewerLocalizations.bundle']
s.exclude_files = 'BFRImageViewController/**/lowResImage.png'
s.platform = :ios, '13.0'
s.requires_arc = true
s.frameworks = "UIKit", "Photos"
s.dependency 'PINRemoteImage/iOS', '~> 3.0.0'
end