forked from indragiek/CocoaMarkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CocoaMarkdown.podspec
27 lines (21 loc) · 1.1 KB
/
CocoaMarkdown.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 = 'CocoaMarkdown'
s.version = '1.0'
s.summary = 'Markdown parsing and rendering for iOS and OS X'
s.description = "CocoaMarkdown aims to solve two primary problems better than existing libraries:
More flexibility. CocoaMarkdown allows you to define custom parsing hooks or even traverse the Markdown AST using the low-level API.
Efficient NSAttributedString creation for easy rendering on iOS and OS X. Most existing libraries just generate HTML from the Markdown, which is not a convenient representation to work with in native apps."
s.homepage = 'https://github.com/indragiek/CocoaMarkdown'
s.license = 'MIT'
s.author = "Indragie Karunaratne"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source = { :git => 'https://github.com/indragiek/CocoaMarkdown.git' }
s.source_files = 'CocoaMarkdown'
s.private_header_files = 'CocoaMarkdown/*_Private.h'
s.ios.framework = 'UIKit'
s.osx.framework = 'Cocoa'
s.requires_arc = true
s.dependency 'cmark', '~> 0.21.0'
s.dependency 'Ono', '~> 1.1.3'
end