Last active
August 29, 2015 14:05
-
-
Save guillaumealgis/996d3c1e8c1a13fa739d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |spec| | |
spec.name = "NSAttributedStringMarkdownParser" | |
spec.version = "0.0.1" | |
spec.summary = "A Markdown NSAttributedString parser." | |
spec.description = "This is a Markdown => NSAttributedString parser built on top of a flex parser. It takes an NSString and returns an NSAttributedString with markdown tags replaced by CoreText formatting attributes." | |
spec.homepage = "https://github.com/jverkoey/NSAttributedStringMarkdownParser" | |
spec.license = "Apache License, Version 2.0" | |
spec.authors = { | |
"Jeff Verkoeyen" => "[email protected]" | |
} | |
spec.platforms = :ios | |
spec.source = { | |
:git => "https://github.com/guillaume-algis/markdown.git", | |
:commit => "607216ba1dd89aaa432f48448c68b9773a1e61c1" | |
} | |
spec.source_files = "src/**/*.{h,m}" | |
spec.dependencies = ['fmemopen'] | |
spec.requires_arc = true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment