forked from gekitz/GKImagePicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GKImagePicker.podspec
20 lines (20 loc) · 1.06 KB
/
GKImagePicker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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' => '[email protected]' }
#s.source = { :git => 'https://github.com/gekitz/GKImagePicker.git', :commit => 'e1d527aedc832f5837da80cf228cc68aecf5045b' }
s.resources = 'GKImages/*.png'
s.source_files = 'GKClasses/*.{h,m}'
s.preserve_paths = 'GKClasses', 'GKImages'
s.frameworks = 'UIKit'
s.requires_arc = true
end