-
Notifications
You must be signed in to change notification settings - Fork 1
/
GKPinView.podspec
26 lines (22 loc) · 1.21 KB
/
GKPinView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = 'GKPinView'
s.version = '0.9.13.2'
s.summary = 'A lock screen Pin/Passcode View for iPhone and iPad.'
s.description = <<-DESC
* A customisable Pin/Passcode View for iPhone or iPad
* It includes a handy delegate to deal with correct/incorrect Pin/Passcode situations.
DESC
s.homepage = 'https://github.com/gligorkot/GKPinView'
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { 'Gligor Kotushevski' => 'gligorkot@gmail.com' }
s.social_media_url = 'https://twitter.com/gligor_nz'
s.platform = :ios, '10.0'
s.ios.deployment_target = '10.0'
s.source = { :git => 'https://github.com/gligorkot/GKPinView.git', :tag => s.version.to_s }
s.source_files = 'Classes', 'Classes/*.{swift}'
s.resources = 'Resources/*.{xib}'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5' }
s.frameworks = 'UIKit'
s.requires_arc = true
s.swift_versions = ['4.0', '4.1', '4.2', '5.0', '5.1', '5.2']
end