-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathBKPasscodeView.podspec
39 lines (24 loc) · 2.39 KB
/
BKPasscodeView.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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "BKPasscodeView"
s.version = "0.2.4"
s.summary = "Customizable passcode view controller for iOS."
s.description = "It supports for setting, changing and authenticating a passcode. Simple numeric passcode or normal passcode can be used."
s.homepage = "https://github.com/bkook/BKPasscodeView"
s.screenshots = "https://raw.githubusercontent.com/bkook/BKPasscodeView/master/Screenshots/passcode_01.png", "https://raw.githubusercontent.com/bkook/BKPasscodeView/master/Screenshots/passcode_02.png"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = "Byungkook Jang"
s.social_media_url = "http://twitter.com/bkook"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "5.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/bkook/BKPasscodeView.git", :tag => s.version.to_s }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "BKPasscodeView/**/*.{h,m}"
s.exclude_files = "Pods"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
s.dependency "AFViewShaker", "~> 0.0"
end