forked from raggi/hanna
-
Notifications
You must be signed in to change notification settings - Fork 16
/
hanna.gemspec
37 lines (36 loc) · 1.42 KB
/
hanna.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
32
33
34
35
36
37
Gem::Specification.new do |s|
s.name = "hanna"
s.version = '1.5.0'
s.authors = ["Jeremy Evans", "Erik Hollensbe", "James Tucker", "Mislav Marohnic"]
s.email = "[email protected]"
s.extra_rdoc_files = [ "LICENSE", "README.rdoc", "CHANGELOG" ]
s.files = [
"LICENSE",
"README.rdoc",
"CHANGELOG",
"lib/hanna.rb",
"lib/hanna/template_files/class_index.erb",
"lib/hanna/template_files/file_index.erb",
"lib/hanna/template_files/index.erb",
"lib/hanna/template_files/layout.erb",
"lib/hanna/template_files/method_index.erb",
"lib/hanna/template_files/method_list.erb",
"lib/hanna/template_files/method_search.js",
"lib/hanna/template_files/page.erb",
"lib/hanna/template_files/sections.erb",
"lib/hanna/template_files/styles.css",
"lib/rdoc/discover.rb"
]
s.homepage = "https://github.com/jeremyevans/hanna"
s.licenses = ["MIT"]
s.description = s.summary = "RDoc generator designed with simplicity, beauty and ease of browsing in mind"
s.metadata = {
'bug_tracker_uri' => 'https://github.com/jeremyevans/hanna/issues',
'mailing_list_uri' => 'https://github.com/jeremyevans/hanna/discussions',
"source_code_uri" => 'https://github.com/jeremyevans/hanna'
}
s.required_ruby_version = ">= 2.2"
s.add_dependency('rdoc', [">= 4"])
s.add_development_dependency('minitest-hooks')
s.add_development_dependency('minitest-global_expectations')
end