forked from food52/Garnish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Garnish.podspec
27 lines (22 loc) · 1.04 KB
/
Garnish.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
#
# Be sure to run `pod lib lint Garnish.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 = 'Garnish'
s.version = '1.0.0'
s.summary = 'UITextView that highlights text like Messages.app'
s.description = <<-DESC
Garnish is a UITextView subclass that replicates the text effects of emoji detection in Messages. GarnishTextView is extensible with custom detectors that define detection behavior and highlight colors/fonts.
DESC
s.homepage = 'https://github.com/Food52/Garnish'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Mike Simons' => ' [email protected]' }
s.source = { :git => 'https://github.com/Food52/Garnish.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'Garnish/Classes/**/*'
s.frameworks = 'UIKit'
end