forked from github/markup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-markup.gemspec
More file actions
20 lines (17 loc) · 821 Bytes
/
github-markup.gemspec
File metadata and controls
20 lines (17 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require File.expand_path("../lib/github-markup", __FILE__)
Gem::Specification.new do |s|
s.name = "github-markup"
s.version = GitHub::Markup::VERSION
s.summary = "The code GitHub uses to render README.markup"
s.description = "This gem is used by GitHub to render any fancy markup such " +
"as Markdown, Textile, Org-Mode, etc. Fork it and add your own!"
s.authors = ["Chris Wanstrath"]
s.email = "chris@ozmm.org"
s.homepage = "https://github.com/github/markup"
s.license = "MIT"
s.files = `git ls-files`.split($\)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = %w[lib]
s.add_dependency "posix-spawn", "~> 0.3.8"
end