-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCGMessageTextView.podspec
More file actions
26 lines (25 loc) · 1.31 KB
/
CGMessageTextView.podspec
File metadata and controls
26 lines (25 loc) · 1.31 KB
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
#
# Be sure to run `pod lib lint CGMessageTextView.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'CGMessageTextView'
s.version = '0.3.1'
s.summary = 'A UITextView subclass that adds support for changing dynamically the height in base of the text.'
s.description = <<-DESC
A UITextView subclass that adds support for changing dynamically the height in base of the text. Also it has multiline placeholder thanks to https://github.com/MoZhouqi/KMPlaceholderTextView. All is written in Swift and it use AutoLayout.
DESC
s.homepage = 'https://github.com/cikpis/CGMessageTextView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Carmelo Gallo' => 'work@carmelogallo.com' }
s.source = { :git => 'https://github.com/cikpis/CGMessageTextView.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/cikpis'
s.ios.deployment_target = '10.1'
s.source_files = 'CGMessageTextView/Classes/**/*'
s.frameworks = "UIKit"
s.requires_arc = true
s.swift_version = '5'
end