15 lines
752 B
Ruby
15 lines
752 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "CZPhotoPickerController"
|
|
s.version = "1.0"
|
|
s.summary = "A photo picker offering 'use last photo taken', 'take photo', and 'choose from library'."
|
|
s.homepage = "https://github.com/carezone/CZPhotoPickerController"
|
|
s.license = "Apache 2.0"
|
|
s.authors = { "Brian Cooke" => "brian@carezone.com", "Peyman Oreizy" => "peyman@carezone.com" }
|
|
s.source = { :git => "https://github.com/carezone/CZPhotoPickerController.git", :tag => "1.0" }
|
|
s.platform = :ios, '5.0'
|
|
s.frameworks = 'AssetsLibrary', 'MobileCoreServices'
|
|
s.source_files = 'CZPhotoPickerController'
|
|
s.resources = 'CZPhotoPickerController/CZPhotoPreviewViewController.xib'
|
|
s.requires_arc = true
|
|
end
|