23 lines
1.1 KiB
Ruby
23 lines
1.1 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'GKImagePicker'
|
|
s.version = '0.0.1'
|
|
s.license = 'MIT'
|
|
s.platform = :ios, '5.0'
|
|
s.summary = 'Image Picker with support for custom crop areas.'
|
|
s.description = 'Ever wanted a custom crop area for the UIImagePickerController?' \
|
|
'Now you can have it with GKImagePicker. Just set your custom' \
|
|
'crop area and thats it. Just 4 lines of code. If you dont' \
|
|
'set it it uses the same crop area as the default' \
|
|
'UIImagePickerController.'
|
|
s.homepage = 'https://github.com/gekitz/GKImagePicker'
|
|
s.author = { 'Georg Kitz' => 'info@aurora-apps.com' }
|
|
s.source = { :git => 'https://github.com/gekitz/GKImagePicker.git', :commit => '6cdf06ccd2d25f2dce68981334355ccc605012c0' }
|
|
s.resources = 'GKImages/*.png'
|
|
s.source_files = 'GKClasses/*.{h,m}'
|
|
s.preserve_paths = 'GKClasses', 'GKImages'
|
|
s.frameworks = 'UIKit'
|
|
s.requires_arc = true
|
|
# s.ios.deployment_target = '4.3'
|
|
end
|
|
|