-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathBFRImageViewer.podspec
More file actions
24 lines (23 loc) · 1.42 KB
/
BFRImageViewer.podspec
File metadata and controls
24 lines (23 loc) · 1.42 KB
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" => "andy@bufferapp.com",
"Jordan Morgan" => "jordan@bufferapp.com"}
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