forked from ilyapuchka/ReadMoreTextView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReadMoreTextView.podspec
31 lines (21 loc) · 1.08 KB
/
ReadMoreTextView.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
Pod::Spec.new do |s|
s.name = "ReadMoreTextView"
s.version = "3.0.0"
s.summary = 'UITextView subclass with "read more"/"read less" capabilities and UITextView extensions to handle touches in characters range.'
s.description = <<-DESC
UITextView subclass with "Read more" behavior.
UITextView extensions to handle touches in characters range.
* Set "read more"/"read less" text as a String or NSAttributedString
* Set maximum number of lines to display
* Turn trim on/off
* Live updates and setup in Interface Builder
* Use UITextView extension methods to detect touches in arbitrary text ranges.
DESC
s.homepage = "http://ilya.puchka.me/custom-uitextview-in-swift/"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Ilya Puchka" => "[email protected]" }
s.social_media_url = "http://twitter.com/ilyapuchka"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/ilyapuchka/ReadMoreTextView.git", :tag => s.version }
s.source_files = "Sources/*.swift"
end