This repository was archived by the owner on Sep 2, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathBFRImageViewer.podspec
More file actions
24 lines (23 loc) 路 1.45 KB
/
Copy pathBFRImageViewer.podspec
File metadata and controls
24 lines (23 loc) 路 1.45 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.2.9"
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 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" => "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.2.9' }
s.source_files = 'Classes', 'BFRImageViewController/**/*.{h,m}'
s.resources = ['BFRImageViewController/**/BFRImageViewerLocalizations.bundle','BFRImageViewController/**/*.{png}']
s.exclude_files = 'BFRImageViewController/**/lowResImage.png'
s.platform = :ios, '11.0'
s.requires_arc = true
s.frameworks = "UIKit", "Photos"
s.dependency 'PINRemoteImage', '~> 3.0.1'
end