forked from apploft/ExpandableLabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExpandableLabel.podspec
29 lines (19 loc) · 912 Bytes
/
ExpandableLabel.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
Pod::Spec.new do |s|
s.name = "ExpandableLabel"
s.version = "0.5.2"
s.summary = "A simple UILabel subclass that shows a tappable link if the content doesn't fit the specified number of lines"
s.description = <<-DESC
ExpandableLabel is a simple UILabel subclass that shows
a tappable link if the content doesn't fit the specified
number of lines. If touched, the label will expand to show
the entire content.
DESC
s.homepage = "https://github.com/apploft/ExpandableLabel"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = "Mathias Köhnke"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/apploft/ExpandableLabel.git", :tag => s.version.to_s }
s.source_files = "Classes", "Classes/**/*.{swift}"
s.exclude_files = "Classes/Exclude"
s.requires_arc = true
end