-
Notifications
You must be signed in to change notification settings - Fork 34
/
SmileViewController.podspec
21 lines (19 loc) · 1.02 KB
/
SmileViewController.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 = "SmileViewController"
s.version = "1.0.8"
s.summary = "UIViewController which allows to detect smile in real time."
s.description = <<-DESC
UIViewController which allows to detect smile in real time by using AVFoundation and CoreImage frameworks.
DESC
s.homepage = "https://github.com/MaximAlien/SmileViewController"
s.screenshots = "https://raw.githubusercontent.com/MaximAlien/SmileViewController/master/resources/example.png"
s.license = "MIT"
s.author = { "MaximAlien" => "maxim.makhun@gmail.com" }
s.platform = :ios, "11.0"
s.ios.deployment_target = '11.0'
s.source = { :git => "https://github.com/MaximAlien/SmileViewController.git", :tag => "1.0.8" }
s.source_files = "SmileViewController", "SmileViewController/**/*.{h,m}"
s.resources = "SmileViewController/**/*.{xib}", "SmileViewController/**/*.{bundle}"
s.frameworks = "AVFoundation", "CoreImage", "UIKit", "Foundation"
s.requires_arc = true
end