-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFFText.podspec
More file actions
33 lines (28 loc) · 1.05 KB
/
FFText.podspec
File metadata and controls
33 lines (28 loc) · 1.05 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
27
28
29
30
31
32
33
#
# Be sure to run `pod lib lint FFText.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 https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'FFText'
s.version = '0.1.3'
s.summary = '富文本控件'
s.description = <<-DESC
简单易用,支持多种功能的富文本显示控件。支持如下功能:
1、基础富文本显示
2、图文排布,支持插入自定义视图
3、自动识别号码、URL、邮箱地址
4、镂空区域
5、AutoLayout
6、自定义截断
7、垂直布局
DESC
s.homepage = 'https://github.com/ijinfeng/FFText'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'jinfeng' => '851406283@qq.com' }
s.source = { :git => 'https://github.com/ijinfeng/FFText.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'FFText/Classes/**/*'
end