-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLGTextView.podspec
More file actions
24 lines (17 loc) · 844 Bytes
/
LGTextView.podspec
File metadata and controls
24 lines (17 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'LGTextView'
s.version = '1.0.0'
s.summary = 'Simple UITextView subclass that features an IBInspectable placeholder'
s.description = <<-DESC
Simple UITextView subclass that features an IBInspectable placeholder written purely in Swift 4.2
DESC
s.homepage = 'https://github.com/linusgeffarth/LGTextView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'linusgeffarth' => 'linus@geffarth.de' }
s.source = { :git => 'https://github.com/linusgeffarth/LGTextView.git', :tag => s.version }
s.social_media_url = 'https://twitter.com/linusgeffarth'
s.ios.deployment_target = '8.0'
s.swift_version = '4.2'
s.source_files = 'LGTextView/Classes/*.swift'
s.frameworks = 'UIKit'
end