-
Notifications
You must be signed in to change notification settings - Fork 0
/
ABPasscode.podspec
40 lines (25 loc) · 2.11 KB
/
ABPasscode.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = 'ABPasscode'
s.version = '0.1'
s.summary = ‘This is pass code view controller which can be used for getting secure entry from users.’
s.description = <<-DESC
A utility control with built in functionality of pass code view that takes inputs in the form secure entry from user. To get the call back methods, you must implement it’s delegate methods to get the code, when user finish entering the passcode.
DESC
s.homepage = 'https://github.com/asifbilal786/ABPasscodeViewController'
s.frameworks = 'UIKit'
s.requires_arc = true
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => 'MIT', :file => 'LICENSE' }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { 'Asif Bilal' => '[email protected]' }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "8.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => 'https://github.com/asifbilal786/ABPasscodeViewController.git', :tag => s.version }
s.social_media_url = 'https://twitter.com/asifbilal786'
s.default_subspec = 'Source'
s.subspec 'Source' do |sp|
sp.source_files = 'Pod', 'ABPasscode/Source/*.swift'
end
end