forked from danieleggert/MarkdownParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMarkdownParser.podspec
27 lines (23 loc) · 1.19 KB
/
MarkdownParser.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 = "MarkdownParser"
s.version = "1.0.2"
s.summary = "private podspec used for MarkdownParser in the Clue app. originally by @danieleggert"
s.homepage = "https://helloclue.com/"
s.license = "Copyright 2016 BioWink GmbH, all rights reserved."
s.authors = { "Joshua May" => "[email protected]",
"Jan Klausa" => "[email protected]",
"Daniel Eggert" => "[email protected]",
"Michał Kałużny" => "[email protected]",
"Julia Roggatz" => "[email protected]",
"Julian Dreißig" => "[email protected]"}
s.source = { :git => "[email protected]:biowink/MarkdownParser.git", :tag => s.version.to_s }
s.social_media_url = "https://twitter.com/clue"
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = "Source/*.{h,m}",
"Source/libsoldout/array.{h,c}",
"Source/libsoldout/buffer.{h,c}",
"Source/libsoldout/markdown.{h,c}",
s.frameworks = "Foundation"
s.module_name = "MarkdownParser"
end