forked from chrisdhaan/CDMarkdownKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCDMarkdownKit.podspec
20 lines (18 loc) · 925 Bytes
/
CDMarkdownKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'CDMarkdownKit'
s.version = '1.2.1'
s.summary = 'An extensive Swift framework providing simple and customizable markdown parsing.'
s.description = <<-DESC
This Swift framework handles standard markdown parsing along with the ability to parse custom elements.
DESC
s.homepage = 'https://github.com/chrisdhaan/CDMarkdownKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Christopher de Haan' => '[email protected]' }
s.source = { :git => 'https://github.com/chrisdhaan/CDMarkdownKit.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/dehaan_solo'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'Source/*.swift'
end