Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Make the pod spec open source friendly #10

Merged
merged 1 commit into from
Feb 19, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions BFRImageViewer.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
Pod::Spec.new do |s|
s.name = "BFRImageViewer"
s.version = "1.0.7"
s.summary = "BFRImageViewer."
s.homepage = "https://bufferapp.com"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Andrew Yates" => "andy@bufferapp.com" }
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" => "andy@bufferapp.com",
"Jordan Morgan" => "jordan@bufferapp.com",
"Humber Aquino" => "humber@bufferapp.com"}
s.social_media_url = "https://twitter.com/bufferdevs"
s.source = { :git => "https://github.com/bufferapp/buffer-ios-image-viewer.git", :tag => 'v1.0.7' }
s.source_files = 'Classes', 'BFRImageViewController/**/*.{h,m}'
s.platform = :ios, '8.0'
s.requires_arc = true
s.frameworks = "UIKit", "Photos"
s.dependency 'DACircularProgress'
s.dependency 'SDWebImage'
end
end