-
Notifications
You must be signed in to change notification settings - Fork 26
/
ResizingTokenField.podspec
16 lines (16 loc) · 1.18 KB
/
ResizingTokenField.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'ResizingTokenField'
s.version = '0.1.1'
s.summary = 'A token field implementation written in Swift 5.'
s.homepage = 'https://github.com/tadejr/ResizingTokenField.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Tadej Razborsek' => '[email protected]' }
s.source = { :git => 'https://github.com/tadejr/ResizingTokenField.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '9.0'
s.source_files = 'ResizingTokenField/Classes/**/*'
s.frameworks = 'UIKit'
s.description = <<-DESC
The token field displays an optional label at the start, a multiline list of tokens, and a text field at the end. Tokens can be collapsed into a text description. Internally it uses a collection view which supports insert and delete animations. Tokens can be customized by changing default token font and colors or providing entirely custom collection view cells. Token field provides an intrinsic content height which updates automatically as items are added and removed.
DESC
end