-
Notifications
You must be signed in to change notification settings - Fork 25
/
docurium.gemspec
32 lines (28 loc) · 1.14 KB
/
docurium.gemspec
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
28
29
30
31
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'docurium/version'
Gem::Specification.new do |s|
s.name = "docurium"
s.version = Docurium::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Carlos Martín Nieto", "Scott Chacon"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/libgit2/docurium"
s.summary = "A simpler, prettier Doxygen replacement."
s.description = s.summary
s.license = 'MIT'
s.add_dependency "version_sorter", "~>2.0"
s.add_dependency "mustache", "~> 1.1"
s.add_dependency "rocco", "~>0.8"
s.add_dependency "gli", "~>2.5"
s.add_dependency "rugged", "~>1.1"
s.add_dependency "redcarpet", "~>3.0"
s.add_dependency "ffi-clang", "~> 0.5"
s.add_dependency "parallel", "~> 1.20"
s.add_development_dependency "rake", "~> 13"
s.add_development_dependency "minitest", "~> 5.11"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end