forked from xing/XNGMarkdownParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXNGMarkdownParser.podspec
More file actions
19 lines (19 loc) · 892 Bytes
/
XNGMarkdownParser.podspec
File metadata and controls
19 lines (19 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "XNGMarkdownParser"
s.version = "0.3.2"
s.summary = "A Markdown NSAttributedString parser."
s.description = <<-DESC
This is a Markdown => NSAttributedString parser built on top
of a flex parser. It takes an NSString and returns an
NSAttributedString with markdown tags replaced by CoreText
formatting attributes.
DESC
s.social_media_url = "https://twitter.com/xingdevs"
s.homepage = "https://github.com/xing/XNGMarkdownParser/"
s.license = 'Apache License, Version 2.0'
s.author = { "XING AG" => "iosdev@xing.com" }
s.platform = :ios, '8.0'
s.source = { :git => "https://github.com/xing/XNGMarkdownParser.git", :tag => s.version.to_s }
s.source_files = 'src/*.{h,m,c}'
s.requires_arc = true
end