-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathFaceAwareFill.podspec
21 lines (18 loc) · 1018 Bytes
/
FaceAwareFill.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "FaceAwareFill"
s.version = "1.0"
s.summary = "Aspect Fill content centering over the detected faces."
s.description = <<-DESC
This category applies Aspect Fill content mode to an image and if faces are detected it centers them instead of centering the image just by its geometrical center.
DESC
s.homepage = "https://github.com/Julioacarrettoni/UIImageView_FaceAwareFill"
s.screenshots = "https://raw2.github.com/Julioacarrettoni/UIImageView_FaceAwareFill/master/EXAMPLE.png"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Julio Andres Carrettoni" => "[email protected]" }
s.source = { :git => "https://github.com/Julioacarrettoni/UIImageView_FaceAwareFill.git", :tag => "v1.0" }
s.platform = :ios, '5.0'
s.ios.deployment_target = '5.0'
s.requires_arc = true
s.source_files = 'UIImageView+FaceAwareFill/*.{h,m}'
s.frameworks = 'CoreImage'
end