Files
JBChartView/DLCImagePickerController/0.0.1/DLCImagePickerController.podspec
T
2012-08-28 20:24:53 +02:00

27 lines
1.1 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.requires_arc = true
s.subspec 'Core' do |sp|
sp.source_files = 'Classes'
sp.resources = "Resources/**/*.*", "Images/{UI,Overlays}/*.png"
# Temporary, this might break the podspec in the future.
sp.dependency 'GPUImage', :head
end
s.subspec 'FilterSamples' do |sp|
sp.resources = "Images/FilterSamples/*.png"
end
end