forked from shiweifu/SFTagView
-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathSKTagView.podspec
More file actions
22 lines (19 loc) · 830 Bytes
/
SKTagView.podspec
File metadata and controls
22 lines (19 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "SKTagView"
s.version = "0.9.2"
s.license = "MIT"
s.summary = "SKTagView is a view supports to display tags with auto layout."
s.homepage = "http://github.com/zsk425/SKTagView"
s.description = <<-DESC
SKTagView is a view supports to display tags with auto layout.
- supports auto layout
- supports working with UITableViewCell
- supports single and multi-line mode
DESC
s.author = { "Shaokang Zhao" => "zsk425@hotmail.com" }
s.ios.deployment_target = "7.0"
s.source = { :git => "https://github.com/zsk425/SKTagView.git", :tag => "0.9.2" }
s.source_files = "SKTagView/*"
s.framework = "UIKit", "Foundation"
s.requires_arc = true
end