forked from zacwest/ZSWTappableLabel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZSWTappableLabel.podspec
More file actions
20 lines (18 loc) · 912 Bytes
/
ZSWTappableLabel.podspec
File metadata and controls
20 lines (18 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "ZSWTappableLabel"
s.version = "2.0"
s.summary = "UILabel subclass in which substrings links can be tapped"
s.description = <<-DESC
NSAttributedStrings presented in ZSWTappableLabel can be tapped or long-pressed
in subranges you specify using attributes.
Read more: https://github.com/zacwest/ZSWTappableLabel
DESC
s.homepage = "https://github.com/zacwest/ZSWTappableLabel"
s.license = 'MIT'
s.author = { "Zachary West" => "zacwest@gmail.com" }
s.source = { :git => "https://github.com/zacwest/ZSWTappableLabel.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/zacwest'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'ZSWTappableLabel/**/*'
end