|
1 | 1 | Pod::Spec.new do |s| |
2 | 2 | s.name = 'OHAttributedLabel' |
3 | | - s.version = '3.5.0' |
| 3 | + s.version = '3.5.1' |
4 | 4 | s.license = {:type => 'MIT', :file => 'OHAttributedLabel/LICENSE'} |
| 5 | + s.platform = :ios |
5 | 6 | s.summary = 'UILabel that supports NSAttributedString.' |
| 7 | + s.description = <<-DESC |
| 8 | + This class allows you to use a `UILabel` with `NSAttributedStrings`, in order |
| 9 | + to display styled text with mixed style (mixed fonts, color, size, ...) |
| 10 | + in a unique label. |
| 11 | + It also provides a `NSAttributedString` category with a lot of commodity methods |
| 12 | + to change its various style & fonts, and some easy to use parsers to build |
| 13 | + your complex `NSAttributedStrings` (containing various/mixed styles) very easily. |
| 14 | + DESC |
| 15 | + |
6 | 16 | s.homepage = 'https://github.com/AliSoftware/OHAttributedLabel' |
7 | 17 | s.author = { 'AliSoftware' => 'olivier.halligon+ae@gmail.com' } |
8 | 18 | s.source = { :git => 'https://github.com/AliSoftware/OHAttributedLabel.git', :tag => s.version.to_s } |
9 | | - s.description = '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. |
10 | | - 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.' |
11 | | - s.platform = :ios |
12 | | - s.source_files = 'OHAttributedLabel/**/*.{h,m}' |
| 19 | + |
| 20 | + s.source_files = 'OHAttributedLabel/Source/*.{h,m}', 'OHAttributedLabel/PrivateUtils/*.{h,m}', 'OHAttributedLabel/TagParsers/*.{h,m}' |
| 21 | + s.public_header_files = 'OHAttributedLabel/Source/*.h', 'OHAttributedLabel/TagParsers/*.h' |
| 22 | + |
13 | 23 | s.framework = 'CoreText' |
14 | 24 | s.requires_arc = true |
15 | 25 | end |
0 commit comments