-
Notifications
You must be signed in to change notification settings - Fork 686
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'ActiveLabel' | ||
s.version = '0.5.1' | ||
s.version = '0.6.0' | ||
|
||
s.author = { 'Optonaut' => '[email protected]' } | ||
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 (@) and URLs (http://) written in Swift' | ||
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 (@) and URLs (http://) written in Swift | ||
UILabel drop-in replacement supporting Hashtags (#), Mentions (@), URLs (http://) and custom regex patterns, written in Swift | ||
Features | ||
* Up-to-date: Swift 2 (Xcode 7 GM) | ||
* Support for Hashtags, Mentions and Links | ||
* Up-to-date: Swift 2+ | ||
* Default support for Hashtags, Mentions, Links | ||
* Support for custom types via regex | ||
* Ability to enable highlighting only for the desired types | ||
* Super easy to use and lightweight | ||
* Works as UILabel drop-in replacement | ||
* Well tested and documented | ||
|