Skip to content

Commit 7dd7735

Browse files
authored
Add podspec files
1 parent cfe8c84 commit 7dd7735

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

CAtomic.podspec

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = 'CAtomic'
3+
spec.version = '0.3.0'
4+
spec.summary = 'A helper for generating thread-safe unique IDs.'
5+
spec.homepage = 'https://github.com/hanny-ph/swift-markdown'
6+
spec.author = { 'R&D Allm Inc.' => '' }
7+
spec.swift_version = '5.9'
8+
spec.source = { :git => 'https://github.com/hanny-ph/swift-markdown.git', :tag => spec.version.to_s }
9+
10+
spec.source_files = 'Sources/CAtomic/**/*.{c,h}'
11+
end

Markdown.podspec

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = 'Markdown'
3+
spec.version = '0.3.0'
4+
spec.summary = 'A Swift package for parsing, building, editing, and analyzing Markdown documents.'
5+
spec.homepage = 'https://github.com/hanny-ph/swift-markdown'
6+
spec.author = { 'R&D Allm Inc.' => '' }
7+
spec.swift_version = '5.9'
8+
spec.source = { :git => 'https://github.com/hanny-ph/swift-markdown.git', :tag => spec.version.to_s }
9+
10+
spec.source_files = 'Sources/Markdown/**/*.swift'
11+
spec.resources = 'Sources/Markdown/**/*.md'
12+
13+
spec.dependency 'CAtomic'
14+
spec.dependency 'cmark-gfm'
15+
16+
spec.test_spec do |test_spec|
17+
test_spec.source_files = 'Tests/**/*.{swift}'
18+
end
19+
end

0 commit comments

Comments
 (0)