forked from Krelborn/KILabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKILabel.podspec
39 lines (27 loc) · 1.81 KB
/
KILabel.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
31
32
33
34
35
36
37
38
39
#
# Be sure to run `pod spec lint KILabel.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "KILabel"
s.version = "1.0.1"
s.summary = "Replacement for UILabel for iOS 7 and 8 that provides automatic detection of links such as URLs, twitter style usernames and hashtags."
s.description = <<-DESC
A simple to use drop in replacement for UILabel for iOS 7 and 8 that provides automatic detection of links such as URLs, twitter style usernames and hashtags.
KILabel is an alternative to UILabel that provides automatic link detection and hilighting for URLs, twitter handles and hashtags. It also detects taps on links and allows you to respond via blocks. It is intended for use in Socal Networking apps like twitter clients but might be useful anywhere you require some extra formatting for text but don't want the overhead of using a text field.
DESC
s.homepage = "https://github.com/Krelborn/KILabel"
s.screenshots = "https://raw.githubusercontent.com/Krelborn/KILabel/master/IKLabelDemoScreenshot.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Matt Styles" => "[email protected]" }
s.social_media_url = "http://twitter.com/Krelborn"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/Krelborn/KILabel.git", :tag => "1.0.1" }
s.source_files = "KILabel/Source/**/*.{h,m}"
public_header_files = "KILabel/Source/**/*.h"
s.frameworks = "UIKit", "Foundation"
s.requires_arc = true
end