forked from gonzalezreal/swift-markdown-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMarkdownUI.podspec
More file actions
executable file
·28 lines (20 loc) · 884 Bytes
/
MarkdownUI.podspec
File metadata and controls
executable file
·28 lines (20 loc) · 884 Bytes
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
Pod::Spec.new do |s|
s.name = "MarkdownUI"
s.version = "0.0.3"
s.summary = "Swift compatible framework for swift-markdown-ui"
s.description = <<-DESC
Swift compatible framework for Github's fork of swift-markdown-ui.
DESC
s.homepage = "https://github.com/ghostcrying/swift-markdown-ui"
s.license = "BSD2"
s.author = { 'ghost' => 'czios1501@gmail.com' }
s.source = { :git => "https://github.com/ghostcrying/swift-markdown-ui.git", :tag => "#{s.version}" }
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.15"
s.tvos.deployment_target = "11.0"
s.source_files = "Sources/*.h", "Sources/MarkdownUI/**/*.swift"
s.public_header_files = "Sources/*.h"
s.resources = 'Sources/MarkdownUI/*.docc'
s.framework = 'Foundation'
s.dependency 'cmark_gfm'
end