-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathCDMarkdownKit.podspec
More file actions
32 lines (28 loc) · 1.19 KB
/
CDMarkdownKit.podspec
File metadata and controls
32 lines (28 loc) · 1.19 KB
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
28
29
30
31
32
Pod::Spec.new do |s|
s.name = 'CDMarkdownKit'
s.version = '3.1.0'
s.cocoapods_version = '>= 1.13.0'
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.documentation_url = 'https://chrisdhaan.github.io/CDMarkdownKit/'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '4.0'
s.visionos.deployment_target = '1.0'
s.swift_versions = ['5']
s.source_files = 'Source/*.swift'
s.resource_bundles = { 'CDMarkdownKit' => ['Source/PrivacyInfo.xcprivacy'] }
s.framework = 'Foundation'
s.ios.framework = 'UIKit'
s.osx.framework = 'Cocoa'
s.tvos.framework = 'UIKit'
s.watchos.framework = 'UIKit'
s.visionos.framework = 'UIKit'
end