-
Notifications
You must be signed in to change notification settings - Fork 1
/
KTTagsView.podspec
30 lines (26 loc) · 1.41 KB
/
KTTagsView.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
Pod::Spec.new do |spec|
spec.name = 'KTTagsView'
spec.version = '1.0.1'
spec.swift_version = '4.0'
spec.cocoapods_version = '>= 1.4.0'
spec.author = { "Killian THORON" => "[email protected]" }
spec.social_media_url = 'http://twitter.com/kthoron'
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.homepage = 'https://github.com/iKiKi/KTTagsView'
spec.source = { :git => "https://github.com/iKiKi/KTTagsView.git", :tag => spec.version.to_s }
spec.summary = "A Swift UIView to layout your tags"
spec.description = <<-DESC
KTTagsView offers a Swift UIView and protocols to help you to display your own custom views as "tags".
This library is very useful when you need to display your tags in a UIScrollView, as it is handled by a UIView.
DESC
spec.static_framework = true
spec.module_name = 'KTTagsView'
# iOS
spec.ios.deployment_target = "9.0"
spec.ios.frameworks = 'Foundation', 'UIKit'
spec.ios.source_files = 'Sources/*.swift'
# tvOS
spec.tvos.deployment_target = "9.0"
spec.tvos.frameworks = 'Foundation', 'UIKit'
spec.tvos.source_files = 'Sources/*.swift'
end