forked from khawars/KSTokenView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KSTokenView.podspec
31 lines (20 loc) · 2.61 KB
/
KSTokenView.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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "KSTokenView"
s.version = "5.0.2"
s.summary = "An iOS control for displaying multiple selections as tokens."
s.description = <<-DESC
KSTokenView is a control that displays a collection of tokens in an editable UITextField and sends messages to delegate object. It can also be used to input text from user and perform search operation asynchronously. UI can be fully custimized to look like part of your application.
DESC
s.homepage = "https://github.com/khawars/KSTokenView"
s.screenshots = "https://raw.githubusercontent.com/khawars/KSTokenView/screenshots/screenshots/iphone1.png", "https://raw.githubusercontent.com/khawars/KSTokenView/screenshots/screenshots/iphone2.png", "https://raw.githubusercontent.com/khawars/KSTokenView/screenshots/screenshots/iphone3.png", "https://raw.githubusercontent.com/khawars/KSTokenView/screenshots/screenshots/iphone4.png", "https://raw.githubusercontent.com/khawars/KSTokenView/screenshots/screenshots/ipad1.png", "https://raw.githubusercontent.com/khawars/KSTokenView/screenshots/screenshots/ipad2.png", "https://raw.githubusercontent.com/khawars/KSTokenView/screenshots/screenshots/ipad3.png", "https://raw.githubusercontent.com/khawars/KSTokenView/screenshots/screenshots/ipad4.png"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Khawar Shahzad" => "[email protected]" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '9.0'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/khawars/KSTokenView.git", :tag => s.version }
s.source_files = "KSTokenView/*.swift"
end