-
Notifications
You must be signed in to change notification settings - Fork 344
/
OHAttributedLabel.podspec
27 lines (23 loc) · 1.27 KB
/
OHAttributedLabel.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
Pod::Spec.new do |s|
s.name = 'OHAttributedLabel'
s.version = '3.5.5'
s.license = { :type => 'MIT', :file => 'OHAttributedLabel/LICENSE'}
s.platform = :ios
s.summary = 'UILabel that supports NSAttributedString.'
s.description = <<-DESC
This class allows you to use a `UILabel` with `NSAttributedStrings`, in order
to display styled text with mixed style (mixed fonts, color, size, ...)
in a unique label.
It also provides a `NSAttributedString` category with a lot of commodity methods
to change its various style & fonts, and some easy to use parsers to build
your complex `NSAttributedStrings` (containing various/mixed styles) very easily.
DESC
s.homepage = 'https://github.com/AliSoftware/OHAttributedLabel'
s.author = { 'AliSoftware' => '[email protected]' }
s.source = { :git => 'https://github.com/AliSoftware/OHAttributedLabel.git', :tag => s.version.to_s }
s.source_files = 'OHAttributedLabel/Source/*.{h,m}', 'OHAttributedLabel/PrivateUtils/*.{h,m}', 'OHAttributedLabel/TagParsers/*.{h,m}'
s.public_header_files = 'OHAttributedLabel/Source/*.h', 'OHAttributedLabel/TagParsers/*.h'
s.framework = 'CoreText'
s.requires_arc = true
s.deprecated_in_favor_of = 'OHAttributedStringAdditions'
end