forked from Cocoanetics/DTCoreText
-
Notifications
You must be signed in to change notification settings - Fork 1
/
DTCoreText.podspec
25 lines (24 loc) · 1.12 KB
/
DTCoreText.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
Pod::Spec.new do |spec|
spec.name = 'DTCoreText'
spec.version = '1.6.13'
spec.platform = :ios, '4.3'
spec.license = 'BSD'
spec.source = { :git => 'https://github.com/Cocoanetics/DTCoreText.git', :tag => spec.version.to_s }
spec.source_files = 'Core/Source/*.{h,m,c}'
spec.dependency 'DTFoundation/Core', '~>1.7.1'
spec.dependency 'DTFoundation/UIKit', '~>1.7.1'
spec.dependency 'DTFoundation/DTHTMLParser', '~>1.7.1'
spec.dependency 'DTFoundation/DTAnimatedGIF', '~>1.7.1'
spec.frameworks = 'MediaPlayer', 'QuartzCore', 'CoreText', 'CoreGraphics', 'ImageIO'
spec.requires_arc = true
spec.homepage = 'https://github.com/Cocoanetics/DTCoreText'
spec.summary = 'Methods to allow using HTML code with CoreText.'
spec.author = { 'Oliver Drobnik' => 'oliver@cocoanetics.com' }
spec.documentation_url = 'http://docs.cocoanetics.com/DTCoreText'
spec.social_media_url = 'https://twitter.com/cocoanetics'
spec.prefix_header_contents = '#import <CoreText/CoreText.h>'
spec.prepare_command = <<-CMD
cd ./Core/Source
/usr/bin/xxd -i default.css default.css.c
CMD
end