forked from dreamwieber/AttributedMarkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAttributedMarkdown.podspec
More file actions
17 lines (17 loc) · 923 Bytes
/
AttributedMarkdown.podspec
File metadata and controls
17 lines (17 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "AttributedMarkdown"
s.version = "0.9.2"
s.summary = "A short description of AttributedMarkdown."
s.homepage = "https://github.com/dreamwieber/AttributedMarkdown"
s.screenshots = "http://gregorywieber.com/work/attributed_markdown.html"
s.license = { :type => 'MIT / GPL', :file => 'LICENSE' }
s.author = 'Gregory Wieber', 'Jim Radford'
s.source = { :git => "https://github.com/dreamwieber/AttributedMarkdown", :tag => "0.9.1" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'markdown_lib.m', 'markdown_lib.h', 'markdown_peg.h', 'markdown_output.m', 'markdown_parser.m', 'platform.h'
s.public_header_files = '*.h'
s.preserve_path = "utility_functions.m", "parsing_functions.m"
s.ios.frameworks = 'CoreText', 'UIKit', 'Foundation'
s.osx.frameworks = 'CoreText', 'AppKit', 'Foundation'
end