20 lines
1.0 KiB
Ruby
20 lines
1.0 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = "DLCImagePickerController"
|
|
s.version = "0.0.1"
|
|
s.summary = "ImagePickerController with live filters, radial blur and more. Brought to you by the fine ladies and gents at Backspaces."
|
|
s.description = <<-DESC
|
|
DLCImagePickerController is a fast, beautiful and fun way to filter and capture your photos with OpenGL and your iPhone.
|
|
The majority of the praise should be directed towards BradLarson for his GPUImage library.
|
|
DESC
|
|
s.homepage = "www.backspac.es"
|
|
s.license = 'BSD'
|
|
s.author = { "Dmitri Cherniak" => "dmitric@gmail.com" }
|
|
s.source = { :git => "https://github.com/gobackspaces/DLCImagePickerController.git", :tag => "0.0.1" }
|
|
s.platform = :ios, '5.0'
|
|
s.source_files = 'Classes'
|
|
s.resources = "Resources/**/*.*", "Images/{UI,Overlays}/*.png"
|
|
s.requires_arc = true
|
|
# Temporary, this might break the podspec in the future.
|
|
s.dependency 'GPUImage', :head
|
|
end
|