forked from optonaut/ActiveLabel.swift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ActiveLabel.podspec
26 lines (23 loc) · 1.03 KB
/
ActiveLabel.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
Pod::Spec.new do |s|
s.name = 'ActiveLabel'
s.version = '0.7.2'
s.author = { 'Optonaut' => 'hello@optonaut.co' }
s.homepage = 'https://github.com/optonaut/ActiveLabel.swift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.platform = :ios, '8.0'
s.source = { :git => 'https://github.com/optonaut/ActiveLabel.swift.git', :tag => s.version.to_s }
s.summary = 'UILabel drop-in replacement supporting Hashtags (#), Mentions (@), URLs (http://) and custom regex patterns, written in Swift'
s.description = <<-DESC
UILabel drop-in replacement supporting Hashtags (#), Mentions (@), URLs (http://) and custom regex patterns, written in Swift
Features
* Up-to-date: Swift 3
* Default support for Hashtags, Mentions, Links
* Support for custom types via regex
* Ability to enable highlighting only for the desired types
* Ability to trim urls
* Super easy to use and lightweight
* Works as UILabel drop-in replacement
* Well tested and documented
DESC
s.source_files = 'ActiveLabel/*.swift'
end