forked from apjanke/ronn-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ronn-ng.gemspec
136 lines (129 loc) · 4.07 KB
/
ronn-ng.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
Gem::Specification.new do |s|
s.name = 'ronn-ng'
s.version = '0.10.1.pre1'
s.date = '2020-12-22'
s.required_ruby_version = '>= 2.4'
s.summary = 'Builds man pages from Markdown'
s.description = 'Ronn-NG builds manuals in HTML and Unix man page format from Markdown.'
s.homepage = 'https://github.com/apjanke/ronn-ng'
s.license = 'MIT'
s.authors = ['Andrew Janke']
s.email = '[email protected]'
s.metadata = {
'bug_tracker_uri' => 'https://github.com/apjanke/ronn-ng/issues',
'source_code_uri' => 'https://github.com/apjanke/ronn-ng',
'changelog_uri' => 'https://github.com/apjanke/ronn-ng/blob/master/CHANGES'
}
# = MANIFEST =
s.files = %w[
AUTHORS
CHANGES
Gemfile
Gemfile.lock
INSTALLING.md
LICENSE.txt
README.md
Rakefile
bin/ronn
completion/bash/ronn
completion/zsh/_ronn
config.ru
lib/ronn.rb
lib/ronn/document.rb
lib/ronn/index.rb
lib/ronn/roff.rb
lib/ronn/server.rb
lib/ronn/template.rb
lib/ronn/template/80c.css
lib/ronn/template/dark.css
lib/ronn/template/darktoc.css
lib/ronn/template/default.html
lib/ronn/template/man.css
lib/ronn/template/print.css
lib/ronn/template/screen.css
lib/ronn/template/toc.css
lib/ronn/utils.rb
man/index.html
man/index.txt
man/ronn-format.7
man/ronn-format.7.ronn
man/ronn.1
man/ronn.1.ronn
ronn-ng.gemspec
test/angle_bracket_syntax.html
test/angle_bracket_syntax.roff
test/angle_bracket_syntax.ronn
test/backticks.html
test/backticks.ronn
test/basic_document.html
test/basic_document.ronn
test/circumflexes.ronn
test/code_blocks.html
test/code_blocks.roff
test/code_blocks.ronn
test/code_blocks_regression
test/code_blocks_regression.html
test/code_blocks_regression.ronn
test/contest.rb
test/custom_title_document.html
test/custom_title_document.ronn
test/definition_list_syntax.html
test/definition_list_syntax.roff
test/definition_list_syntax.ronn
test/dots_at_line_start_test.roff
test/dots_at_line_start_test.ronn
test/ellipses.roff
test/ellipses.ronn
test/entity_encoding_test.html
test/entity_encoding_test.roff
test/entity_encoding_test.ronn
test/index.txt
test/markdown_syntax.html
test/markdown_syntax.roff
test/markdown_syntax.ronn
test/middle_paragraph.html
test/middle_paragraph.roff
test/middle_paragraph.ronn
test/missing_spaces.roff
test/missing_spaces.ronn
test/nested_list.ronn
test/nested_list_with_code.html
test/nested_list_with_code.roff
test/nested_list_with_code.ronn
test/ordered_list.html
test/ordered_list.roff
test/ordered_list.ronn
test/page.with.periods.in.name.5.ronn
test/pre_block_with_quotes.roff
test/pre_block_with_quotes.ronn
test/section_reference_links.html
test/section_reference_links.roff
test/section_reference_links.ronn
test/single_quotes.html
test/single_quotes.roff
test/single_quotes.ronn
test/tables.ronn
test/test_ronn.rb
test/test_ronn_document.rb
test/test_ronn_index.rb
test/titleless_document.html
test/titleless_document.ronn
test/underline_spacing_test.roff
test/underline_spacing_test.ronn
]
# = MANIFEST =
s.executables = ['ronn']
s.test_files = s.files.select { |path| path =~ /^test\/.*_test.rb/ }
s.extra_rdoc_files = %w[LICENSE.txt AUTHORS]
s.add_dependency 'kramdown', '~> 2.1'
s.add_dependency 'kramdown-parser-gfm', '~> 1.0.1'
s.add_dependency 'mustache', '~> 1.0'
s.add_dependency 'nokogiri', '~> 1.11', '>= 1.11.0'
s.add_development_dependency 'rack', '~> 2.2', '>= 2.2.3'
s.add_development_dependency 'rake', '~> 12.3', '>= 12.3.3'
s.add_development_dependency 'rubocop', '~> 0.88', '>= 0.88.0'
s.add_development_dependency 'sinatra', '~> 2.0', '>= 2.0.8'
s.add_development_dependency 'test-unit', '~> 3.3', '>= 3.3.6'
s.rdoc_options = ['--line-numbers', '--inline-source', '--title', 'Ronn']
s.require_paths = %w[lib]
end