-
Notifications
You must be signed in to change notification settings - Fork 67
/
CDMarkdownKit.podspec
27 lines (23 loc) · 964 Bytes
/
CDMarkdownKit.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 = 'CDMarkdownKit'
s.version = '2.5.1'
s.license = { :type => 'MIT', :file => 'LICENSE' }
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.author = { 'Christopher de Haan' => 'contact@christopherdehaan.me' }
s.source = { :git => 'https://github.com/chrisdhaan/CDMarkdownKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
s.swift_versions = ['5']
s.source_files = 'Source/*.swift'
s.framework = 'Foundation'
s.ios.framework = 'UIKit'
s.osx.framework = 'Cocoa'
s.tvos.framework = 'UIKit'
s.watchos.framework = 'UIKit'
end