-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/toupper/Warhol
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# | ||
# Be sure to run `pod lib lint Warhol.podspec' to ensure this is a | ||
# valid spec and remove all comments before submitting the spec. | ||
# | ||
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "Warhol" | ||
s.version = "0.1.1" | ||
s.summary = "Face detection made easy." | ||
s.description = <<-DESC | ||
Warhol acts as a wrapper on top of the Apple Vision Framework, detecting the features of a face from camera or image and providing these elements position in your own coordinates, so you can easily draw on top. | ||
DESC | ||
s.homepage = "https://github.com/toupper/Warhol" | ||
s.license = 'MIT' | ||
s.author = { "César Vargas Casaseca" => "[email protected]" } | ||
s.source = { :git => "https://github.com/toupper/Warhol.git", :tag => s.version.to_s } | ||
|
||
s.ios.deployment_target = '11.0' | ||
|
||
s.requires_arc = true | ||
|
||
s.ios.source_files = 'Warhol/Warhol/**/*.{h,m,swift}' | ||
|
||
s.swift_version = "5.2" | ||
end |