-
Notifications
You must be signed in to change notification settings - Fork 686
/
ActiveLabel.podspec
26 lines (23 loc) · 1.06 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 = '1.1.5'
s.author = { 'Optonaut' => '[email protected]' }
s.homepage = 'https://github.com/optonaut/ActiveLabel.swift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.platform = :ios, '10.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
* Swift 5.0 (1.1.0+) and 4.2 (1.0.1)
* Default support for **Hashtags, Mentions, Links, Emails**
* 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