ronn-ng 0.9.0 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES +5 -0
- data/bin/ronn +11 -1
- data/lib/ronn.rb +1 -1
- data/lib/ronn/document.rb +4 -1
- data/lib/ronn/roff.rb +2 -2
- data/man/ronn-format.7 +3 -3
- data/man/ronn.1 +16 -10
- data/man/ronn.1.ronn +10 -1
- data/ronn-ng.gemspec +2 -3
- data/test/markdown_syntax.roff +6 -6
- data/test/section_reference_links.roff +1 -1
- metadata +33 -34
- data/test/url_formatting.ronn +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0c86d52512fedd7a5b3b61f1867851fcab7877706e458f4cde45e073df6fa4a
|
4
|
+
data.tar.gz: 18d7a1560428cf229e72956656ddc0395bae82ca6a3824bd75b116b44e437be2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4578b4612b2c004a2aa06f27161008fd57c7ee70e3715f3da8a9872e0c023f91d45651f65c75e358bfcd79712f4870e5e63c27f63bbf5614688010dfa2fae5c3
|
7
|
+
data.tar.gz: e180ee66f3bca9a20fe5e99ac8b47ce1d69fb5bbc65f40a95bab9500f5c0efe6a65dc2a225edf5df972b32ccf17b30773a31f8cc19104eab5192aa85fd807e08
|
data/CHANGES
CHANGED
data/bin/ronn
CHANGED
@@ -31,12 +31,19 @@
|
|
31
31
|
# / -W disable previously enabled troff warnings
|
32
32
|
# / --version show ronn version and exit
|
33
33
|
# / --help show this help message
|
34
|
+
# / -E <encoding> specify the encoding files are in (default is UTF-8)
|
35
|
+
# / Note: this only affects files. Data passed in to ronn's STDIN
|
36
|
+
# / must be in UTF-8 regardless of the -E setting.
|
34
37
|
# /
|
35
38
|
# / A <file> named example.1.ronn generates example.1.html (HTML manpage)
|
36
39
|
# / and example.1 (roff manpage) by default.
|
37
40
|
require 'date'
|
38
41
|
require 'optparse'
|
39
42
|
|
43
|
+
# Ronn wants its inputs to be in UTF-8, regardless of the user's
|
44
|
+
# locale settings or Ruby version.
|
45
|
+
Encoding.default_external = Encoding::UTF_8
|
46
|
+
|
40
47
|
def usage
|
41
48
|
puts File.readlines(__FILE__)
|
42
49
|
.grep(/^# \/.*/)
|
@@ -75,6 +82,7 @@ view = false
|
|
75
82
|
server = false
|
76
83
|
port_arg = nil
|
77
84
|
formats = nil
|
85
|
+
encoding = 'UTF-8'
|
78
86
|
options = {}
|
79
87
|
write_index = false
|
80
88
|
styles = %w[man]
|
@@ -111,9 +119,10 @@ ARGV.options do |argv|
|
|
111
119
|
argv.on('-f', '--fragment') { (formats ||= []) << 'html_fragment' }
|
112
120
|
argv.on('--markdown') { (formats ||= []) << 'markdown' }
|
113
121
|
argv.on('--yaml') { (formats ||= []) << 'yaml' }
|
122
|
+
argv.on('-E', '--encoding=V') { |val| encoding = val }
|
114
123
|
|
115
124
|
# html output options
|
116
|
-
argv.on('-s', '--style=V')
|
125
|
+
argv.on('-s', '--style=V') { |val| styles += val.split(/[, \n]+/) }
|
117
126
|
|
118
127
|
# manual attribute options
|
119
128
|
%w[name section manual organization date].each do |attribute|
|
@@ -158,6 +167,7 @@ formats.delete('html') if formats.include?('html_fragment')
|
|
158
167
|
options['date'] &&= Date.strptime(options['date'], '%Y-%m-%d')
|
159
168
|
options['styles'] = styles
|
160
169
|
options['outdir'] = output_dir
|
170
|
+
options['encoding'] = encoding
|
161
171
|
|
162
172
|
unless port_arg.nil?
|
163
173
|
begin
|
data/lib/ronn.rb
CHANGED
data/lib/ronn/document.rb
CHANGED
@@ -23,6 +23,9 @@ module Ronn
|
|
23
23
|
# object is created with a stream, in which case stdin will be read.
|
24
24
|
attr_reader :path
|
25
25
|
|
26
|
+
# Encoding that the Ronn document is in
|
27
|
+
attr_accessor :encoding
|
28
|
+
|
26
29
|
# The raw input data, read from path or stream and unmodified.
|
27
30
|
attr_reader :data
|
28
31
|
|
@@ -73,7 +76,7 @@ module Ronn
|
|
73
76
|
if ['-', nil].include?(f)
|
74
77
|
STDIN.read
|
75
78
|
else
|
76
|
-
File.read(f)
|
79
|
+
File.read(f, encoding: @encoding)
|
77
80
|
end
|
78
81
|
end
|
79
82
|
@data = @reader.call(path)
|
data/lib/ronn/roff.rb
CHANGED
@@ -281,13 +281,13 @@ module Ronn
|
|
281
281
|
inline_filter(node.children)
|
282
282
|
elsif node.has_attribute?('data-bare-link')
|
283
283
|
write '\fI'
|
284
|
-
|
284
|
+
inline_filter(node.children)
|
285
285
|
write '\fR'
|
286
286
|
else
|
287
287
|
inline_filter(node.children)
|
288
288
|
write ' '
|
289
289
|
write '\fI'
|
290
|
-
write
|
290
|
+
write escape(node.attributes['href'].content)
|
291
291
|
write '\fR'
|
292
292
|
end
|
293
293
|
|
data/man/ronn-format.7
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
.\" generated with Ronn-NG/v0.9.
|
2
|
-
.\" http://github.com/apjanke/ronn-ng/tree/0.9.
|
3
|
-
.TH "RONN\-FORMAT" "7" "December 2018" "Ronn-NG 0.9.
|
1
|
+
.\" generated with Ronn-NG/v0.9.1
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.9.1
|
3
|
+
.TH "RONN\-FORMAT" "7" "December 2018" "Ronn-NG 0.9.1" "Ronn Manual"
|
4
4
|
.SH "NAME"
|
5
5
|
\fBronn\-format\fR \- manual authoring format based on Markdown
|
6
6
|
.SH "SYNOPSIS"
|
data/man/ronn.1
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
.\" generated with Ronn-NG/v0.9.
|
2
|
-
.\" http://github.com/apjanke/ronn-ng/tree/0.9.
|
3
|
-
.TH "RONN" "1" "
|
1
|
+
.\" generated with Ronn-NG/v0.9.1
|
2
|
+
.\" http://github.com/apjanke/ronn-ng/tree/0.9.1
|
3
|
+
.TH "RONN" "1" "January 2020" "Ronn-NG 0.9.1" "Ronn Manual"
|
4
4
|
.SH "NAME"
|
5
5
|
\fBronn\fR \- convert markdown files to manpages
|
6
6
|
.SH "SYNOPSIS"
|
@@ -13,6 +13,8 @@
|
|
13
13
|
\fBronn\fR \fB\-\-pipe\fR \fIfile\fR
|
14
14
|
.br
|
15
15
|
\fBronn\fR < \fIfile\fR
|
16
|
+
.br
|
17
|
+
\fBronn\fR \fB\-E\fR|\fB\-\-encoding\fR \fIencoding\fR \|\.\|\.\|\.
|
16
18
|
.SH "DESCRIPTION"
|
17
19
|
\fBRonn\fR converts textfiles to standard roff\-formatted Unix manpages or HTML\. ronn\-format(7) is based on markdown(7) but includes additional rules and syntax geared toward authoring manuals\.
|
18
20
|
.P
|
@@ -24,13 +26,15 @@ With no \fIfile\fR arguments, \fBronn\fR acts as simple filter\. Ronn source tex
|
|
24
26
|
.SH "FILES"
|
25
27
|
The \fBronn\fR command expects input to be valid ronn\-format(7) text\. Source files are typically named \fIname\fR\.\fIsection\fR\.ronn (e\.g\., \fBexample\.1\.ronn\fR)\. The \fIname\fR and \fIsection\fR should match the name and section defined in the \fIfile\fR\'s heading\.
|
26
28
|
.P
|
29
|
+
Source files must be in UTF\-8 encoding, or the encoding specified by the \fB\-E\fR/\fB\-\-encoding\fR option, regardless of the locale that \fBronn\fR is running under\.
|
30
|
+
.P
|
27
31
|
When building roff or HTML output files, destination filenames are determined by taking the basename of the input \fIfile\fR and adding the appropriate file extension (or removing the file extension in the case of roff output)\. For example, executing \fBronn example\.1\.ronn\fR generates \fBexample\.1\fR with roff output and \fBexample\.1\.html\fR with HTML output\.
|
28
32
|
.SH "OPTIONS"
|
29
33
|
These options control whether output is written to file(s), standard output, or directly to a man pager\.
|
30
34
|
.IP "\[ci]" 4
|
31
35
|
\fB\-m\fR, \fB\-\-man\fR: Don\'t generate files, display \fIfile\fRs as if man(1) were invoked on the roff output file\. This simulates default man behavior by piping the roff output through groff(1) and the paging program specified by the \fBMANPAGER\fR environment variable\.
|
32
36
|
.IP "\[ci]" 4
|
33
|
-
\fB\-S\fR, \fB\-\-server\fR: Don\'t generate files, start an HTTP server at \
|
37
|
+
\fB\-S\fR, \fB\-\-server\fR: Don\'t generate files, start an HTTP server at \fIhttp://localhost:1207/\fR and serve dynamically generated HTML for the set of input \fIfile\fRs\. A file named \fIexample\.2\.ronn\fR is served as \fI/example\.2\.html\fR\. There\'s also an index page at the root with links to each \fIfile\fR\.
|
34
38
|
.IP
|
35
39
|
The server respects the \fB\-\-style\fR and document attribute options (\fB\-\-manual\fR, \fB\-\-date\fR, etc\.)\. These same options can be varied at request time by giving them as query parameters: \fB?manual=FOO&style=dark,toc\fR
|
36
40
|
.IP
|
@@ -41,6 +45,8 @@ The server respects the \fB\-\-style\fR and document attribute options (\fB\-\-m
|
|
41
45
|
\fB\-\-pipe\fR: Don\'t generate files, write generated output to standard output\. This is the default behavior when ronn source text is piped in on standard input and no \fIfile\fR arguments are provided\.
|
42
46
|
.IP "\[ci]" 4
|
43
47
|
\fB\-o\fR=\fIdirectory\fR, \fB\-\-output\-dir\fR=\fIdirectory\fR: Write generated files to the specified directory instead of the default location\.
|
48
|
+
.IP "\[ci]" 4
|
49
|
+
\fB\-E\fR=\fIencoding\fR, \fB\-\-encoding\fR=<encoding: Specify the encoding that input files are in\. Default is UTF\-8, regardless of user\'s locale settings\. Input sent to STDIN is always treated as UTF\-8, regardless of whether \fB\-E\fR is passed\.
|
44
50
|
.IP "" 0
|
45
51
|
.P
|
46
52
|
Format options control the files \fBronn\fR generates, or the output format when the \fB\-\-pipe\fR argument is specified\. When no format options are given, both \fB\-\-roff\fR and \fB\-\-html\fR are assumed\.
|
@@ -54,7 +60,7 @@ Generate output in HTML format\.
|
|
54
60
|
\fB\-f\fR, \fB\-\-fragment\fR
|
55
61
|
Generate output in HTML format but only the document fragment, not the header, title, or footer\.
|
56
62
|
.P
|
57
|
-
Document attributes displayed in the header and footer areas of generated content are specified with these options\. (These values may also be set via the \
|
63
|
+
Document attributes displayed in the header and footer areas of generated content are specified with these options\. (These values may also be set via the \fIENVIRONMENT\fR\.)
|
58
64
|
.TP
|
59
65
|
\fB\-\-manual\fR=\fImanual\fR
|
60
66
|
The name of the manual this man page belongs to; \fImanual\fR is prominently displayed top\-center in the header area\.
|
@@ -70,11 +76,11 @@ HTML output can be customized through the use of CSS stylesheets:
|
|
70
76
|
\fB\-\-style\fR=\fImodule\fR[,\fImodule\fR]\|\.\|\.\|\.
|
71
77
|
The list of CSS stylesheets to apply to the document\. Multiple \fImodule\fR arguments may be specified, but must be separated by commas or spaces\.
|
72
78
|
.IP
|
73
|
-
When \fImodule\fR is a simple word, search for files named \fImodule\fR\fB\.css\fR in all directories listed in the \fI
|
79
|
+
When \fImodule\fR is a simple word, search for files named \fImodule\fR\fB\.css\fR in all directories listed in the \fI\fBRONN_STYLE\fR\fR environment variable, and then search internal styles\.
|
74
80
|
.IP
|
75
81
|
When \fImodule\fR includes a \fI/\fR character, use it as the full path to a stylesheet file\.
|
76
82
|
.IP
|
77
|
-
Internal styles are \fIman\fR (included by default), \fItoc\fR, and \fI80c\fR\. See \
|
83
|
+
Internal styles are \fIman\fR (included by default), \fItoc\fR, and \fI80c\fR\. See \fISTYLES\fR for descriptions of features added by each module\.
|
78
84
|
.P
|
79
85
|
Miscellaneous options:
|
80
86
|
.TP
|
@@ -143,7 +149,7 @@ The heading and footing, respectively\.
|
|
143
149
|
\fB\.man\-title\fR
|
144
150
|
The main \fB<h1>\fR element\. Hidden by default unless the manual has no \fIname\fR or \fIsection\fR attributes\.
|
145
151
|
.P
|
146
|
-
See the builtin style sources \
|
152
|
+
See the builtin style sources \fIhttp://github\.com/apjanke/ronn\-ng/tree/master/lib/ronn/template\fR for examples\.
|
147
153
|
.SH "EXAMPLES"
|
148
154
|
Build roff and HTML output files and view the roff manpage using man(1):
|
149
155
|
.IP "" 4
|
@@ -189,7 +195,7 @@ $ ronn \-\-man hello\.1\.ronn
|
|
189
195
|
.fi
|
190
196
|
.IP "" 0
|
191
197
|
.P
|
192
|
-
Serve HTML manpages at \
|
198
|
+
Serve HTML manpages at \fIhttp://localhost:1207/\fR for all \fB*\.ronn\fR files under a \fBman/\fR directory:
|
193
199
|
.IP "" 4
|
194
200
|
.nf
|
195
201
|
$ ronn \-\-server man/*\.ronn
|
@@ -216,6 +222,6 @@ The paging program used for man pages\. This is typically set to something like
|
|
216
222
|
\fBPAGER\fR
|
217
223
|
Used instead of \fBMANPAGER\fR when \fBMANPAGER\fR is not defined\.
|
218
224
|
.SH "COPYRIGHT"
|
219
|
-
Ronn\-NG is Copyright (C) 2009 Ryan Tomayko \
|
225
|
+
Ronn\-NG is Copyright (C) 2009 Ryan Tomayko \fIhttp://tomayko\.com/about\fR and (C) 2018 Andrew Janke \fIhttps://apjanke\.net\fR
|
220
226
|
.SH "SEE ALSO"
|
221
227
|
groff(1), man(1), pandoc(1), manpages(5), markdown(7), roff(7), ronn\-format(7)
|
data/man/ronn.1.ronn
CHANGED
@@ -7,7 +7,8 @@ ronn(1) -- convert markdown files to manpages
|
|
7
7
|
`ronn` `-m`|`--man` <file>...<br>
|
8
8
|
`ronn` `-S`|`--server` <file>...<br>
|
9
9
|
`ronn` `--pipe` <file><br>
|
10
|
-
`ronn` < <file>
|
10
|
+
`ronn` < <file><br>
|
11
|
+
`ronn` `-E`|`--encoding` <encoding> ...
|
11
12
|
|
12
13
|
## DESCRIPTION
|
13
14
|
|
@@ -35,6 +36,9 @@ The `ronn` command expects input to be valid ronn-format(7) text. Source files
|
|
35
36
|
are typically named <name>.<section>.ronn (e.g., `example.1.ronn`). The <name>
|
36
37
|
and <section> should match the name and section defined in the <file>'s heading.
|
37
38
|
|
39
|
+
Source files must be in UTF-8 encoding, or the encoding specified by the
|
40
|
+
`-E`/`--encoding` option, regardless of the locale that `ronn` is running under.
|
41
|
+
|
38
42
|
When building roff or HTML output files, destination filenames are determined by
|
39
43
|
taking the basename of the input <file> and adding the appropriate file
|
40
44
|
extension (or removing the file extension in the case of roff output). For
|
@@ -78,6 +82,11 @@ directly to a man pager.
|
|
78
82
|
* `-o`=<directory>, `--output-dir`=<directory>:
|
79
83
|
Write generated files to the specified directory instead of the default
|
80
84
|
location.
|
85
|
+
|
86
|
+
* `-E`=<encoding>, `--encoding`=<encoding:
|
87
|
+
Specify the encoding that input files are in. Default is UTF-8, regardless
|
88
|
+
of user's locale settings. Input sent to STDIN is always treated as UTF-8,
|
89
|
+
regardless of whether `-E` is passed.
|
81
90
|
|
82
91
|
Format options control the files `ronn` generates, or the output format when the
|
83
92
|
`--pipe` argument is specified. When no format options are given, both `--roff`
|
data/ronn-ng.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'ronn-ng'
|
3
|
-
s.version = '0.9.
|
4
|
-
s.date = '
|
3
|
+
s.version = '0.9.1'
|
4
|
+
s.date = '2020-04-09'
|
5
5
|
|
6
6
|
s.summary = 'Builds man pages from Markdown'
|
7
7
|
s.description = 'Ronn-NG builds manuals in HTML and Unix man page format from Markdown.'
|
@@ -103,7 +103,6 @@ Gem::Specification.new do |s|
|
|
103
103
|
test/titleless_document.ronn
|
104
104
|
test/underline_spacing_test.roff
|
105
105
|
test/underline_spacing_test.ronn
|
106
|
-
test/url_formatting.ronn
|
107
106
|
]
|
108
107
|
# = MANIFEST =
|
109
108
|
|
data/test/markdown_syntax.roff
CHANGED
@@ -37,7 +37,7 @@ Inline markup like _italics_, **bold**, and `code()`\.
|
|
37
37
|
.SS "Philosophy"
|
38
38
|
Markdown is intended to be as easy\-to\-read and easy\-to\-write as is feasible\.
|
39
39
|
.P
|
40
|
-
Readability, however, is emphasized above all else\. A Markdown\-formatted document should be publishable as\-is, as plain text, without looking like it\'s been marked up with tags or formatting instructions\. While Markdown\'s syntax has been influenced by several existing text\-to\-HTML filters \-\- including Setext \
|
40
|
+
Readability, however, is emphasized above all else\. A Markdown\-formatted document should be publishable as\-is, as plain text, without looking like it\'s been marked up with tags or formatting instructions\. While Markdown\'s syntax has been influenced by several existing text\-to\-HTML filters \-\- including Setext \fIhttp://docutils\.sourceforge\.net/mirror/setext\.html\fR, atx \fIhttp://www\.aaronsw\.com/2002/atx/\fR, Textile \fIhttp://textism\.com/tools/textile/\fR, reStructuredText \fIhttp://docutils\.sourceforge\.net/rst\.html\fR, Grutatext \fIhttp://www\.triptico\.com/software/grutatxt\.html\fR, and EtText \fIhttp://ettext\.taint\.org/doc/\fR \-\- the single biggest source of inspiration for Markdown\'s syntax is the format of plain text email\.
|
41
41
|
.P
|
42
42
|
To this end, Markdown\'s syntax is comprised entirely of punctuation characters, which punctuation characters have been carefully chosen so as to look like what they mean\. E\.g\., asterisks around a word actually look like *emphasis*\. Markdown lists look like, well, lists\. Even blockquotes look like quoted passages of text, assuming you\'ve ever used email\.
|
43
43
|
.SS "Inline HTML"
|
@@ -111,7 +111,7 @@ AT&T
|
|
111
111
|
.fi
|
112
112
|
.IP "" 0
|
113
113
|
.P
|
114
|
-
Similarly, because Markdown supports \
|
114
|
+
Similarly, because Markdown supports \fIinline HTML\fR, if you use angle brackets as delimiters for HTML tags, Markdown will treat them as such\. But if you write:
|
115
115
|
.IP "" 4
|
116
116
|
.nf
|
117
117
|
4 < 5
|
@@ -134,9 +134,9 @@ The implication of the "one or more consecutive lines of text" rule is that Mark
|
|
134
134
|
.P
|
135
135
|
When you \fIdo\fR want to insert a \fB<br />\fR break tag using Markdown, you end a line with two or more spaces, then type return\.
|
136
136
|
.P
|
137
|
-
Yes, this takes a tad more effort to create a \fB<br />\fR, but a simplistic "every line break is a \fB<br />\fR" rule wouldn\'t work for Markdown\. Markdown\'s email\-style \
|
137
|
+
Yes, this takes a tad more effort to create a \fB<br />\fR, but a simplistic "every line break is a \fB<br />\fR" rule wouldn\'t work for Markdown\. Markdown\'s email\-style \fIblockquoting\fR and multi\-paragraph \fIlist items\fR work best \-\- and look better \-\- when you format them with hard breaks\.
|
138
138
|
.SS "Headers"
|
139
|
-
Markdown supports two styles of headers, Setext \
|
139
|
+
Markdown supports two styles of headers, Setext \fIhttp://docutils\.sourceforge\.net/mirror/setext\.html\fR and atx \fIhttp://www\.aaronsw\.com/2002/atx/\fR\.
|
140
140
|
.P
|
141
141
|
Setext\-style headers are "underlined" using equal signs (for first\-level headers) and dashes (for second\-level headers)\. For example:
|
142
142
|
.IP "" 4
|
@@ -900,8 +900,8 @@ _ underscore
|
|
900
900
|
.SH "AUTHOR"
|
901
901
|
Markdown was created by John Gruber\.
|
902
902
|
.P
|
903
|
-
Manual page by Ryan Tomayko\. It\'s pretty much a direct copy of the Markdown Syntax Reference \
|
903
|
+
Manual page by Ryan Tomayko\. It\'s pretty much a direct copy of the Markdown Syntax Reference \fIhttp://daringfireball\.net/projects/markdown/syntax\fR, also by John Gruber\.
|
904
904
|
.SH "SEE ALSO"
|
905
905
|
ronn(5)
|
906
906
|
.br
|
907
|
-
\
|
907
|
+
\fIhttp://daringfireball\.net/projects/markdown/\fR
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ronn-ng
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Janke
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-04-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: kramdown
|
@@ -28,42 +28,42 @@ dependencies:
|
|
28
28
|
name: mustache
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 0.7.0
|
34
31
|
- - "~>"
|
35
32
|
- !ruby/object:Gem::Version
|
36
33
|
version: '0.7'
|
34
|
+
- - ">="
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 0.7.0
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
|
-
- - ">="
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
version: 0.7.0
|
44
41
|
- - "~>"
|
45
42
|
- !ruby/object:Gem::Version
|
46
43
|
version: '0.7'
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 0.7.0
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: nokogiri
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
|
-
- - ">="
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: 1.9.0
|
54
51
|
- - "~>"
|
55
52
|
- !ruby/object:Gem::Version
|
56
53
|
version: '1.9'
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: 1.9.0
|
57
57
|
type: :runtime
|
58
58
|
prerelease: false
|
59
59
|
version_requirements: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
|
-
- - ">="
|
62
|
-
- !ruby/object:Gem::Version
|
63
|
-
version: 1.9.0
|
64
61
|
- - "~>"
|
65
62
|
- !ruby/object:Gem::Version
|
66
63
|
version: '1.9'
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 1.9.0
|
67
67
|
- !ruby/object:Gem::Dependency
|
68
68
|
name: rack
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,62 +88,62 @@ dependencies:
|
|
88
88
|
name: rake
|
89
89
|
requirement: !ruby/object:Gem::Requirement
|
90
90
|
requirements:
|
91
|
-
- - ">="
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
version: 12.3.0
|
94
91
|
- - "~>"
|
95
92
|
- !ruby/object:Gem::Version
|
96
93
|
version: '12.3'
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 12.3.0
|
97
97
|
type: :development
|
98
98
|
prerelease: false
|
99
99
|
version_requirements: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: 12.3.0
|
104
101
|
- - "~>"
|
105
102
|
- !ruby/object:Gem::Version
|
106
103
|
version: '12.3'
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: 12.3.0
|
107
107
|
- !ruby/object:Gem::Dependency
|
108
108
|
name: rubocop
|
109
109
|
requirement: !ruby/object:Gem::Requirement
|
110
110
|
requirements:
|
111
|
-
- - ">="
|
112
|
-
- !ruby/object:Gem::Version
|
113
|
-
version: 0.57.1
|
114
111
|
- - "~>"
|
115
112
|
- !ruby/object:Gem::Version
|
116
113
|
version: '0.60'
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: 0.57.1
|
117
117
|
type: :development
|
118
118
|
prerelease: false
|
119
119
|
version_requirements: !ruby/object:Gem::Requirement
|
120
120
|
requirements:
|
121
|
-
- - ">="
|
122
|
-
- !ruby/object:Gem::Version
|
123
|
-
version: 0.57.1
|
124
121
|
- - "~>"
|
125
122
|
- !ruby/object:Gem::Version
|
126
123
|
version: '0.60'
|
124
|
+
- - ">="
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: 0.57.1
|
127
127
|
- !ruby/object:Gem::Dependency
|
128
128
|
name: sinatra
|
129
129
|
requirement: !ruby/object:Gem::Requirement
|
130
130
|
requirements:
|
131
|
-
- - ">="
|
132
|
-
- !ruby/object:Gem::Version
|
133
|
-
version: 2.0.0
|
134
131
|
- - "~>"
|
135
132
|
- !ruby/object:Gem::Version
|
136
133
|
version: '2.0'
|
134
|
+
- - ">="
|
135
|
+
- !ruby/object:Gem::Version
|
136
|
+
version: 2.0.0
|
137
137
|
type: :development
|
138
138
|
prerelease: false
|
139
139
|
version_requirements: !ruby/object:Gem::Requirement
|
140
140
|
requirements:
|
141
|
-
- - ">="
|
142
|
-
- !ruby/object:Gem::Version
|
143
|
-
version: 2.0.0
|
144
141
|
- - "~>"
|
145
142
|
- !ruby/object:Gem::Version
|
146
143
|
version: '2.0'
|
144
|
+
- - ">="
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: 2.0.0
|
147
147
|
- !ruby/object:Gem::Dependency
|
148
148
|
name: test-unit
|
149
149
|
requirement: !ruby/object:Gem::Requirement
|
@@ -257,7 +257,6 @@ files:
|
|
257
257
|
- test/titleless_document.ronn
|
258
258
|
- test/underline_spacing_test.roff
|
259
259
|
- test/underline_spacing_test.ronn
|
260
|
-
- test/url_formatting.ronn
|
261
260
|
homepage: https://github.com/apjanke/ronn-ng
|
262
261
|
licenses:
|
263
262
|
- MIT
|
@@ -284,7 +283,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
284
283
|
- !ruby/object:Gem::Version
|
285
284
|
version: '0'
|
286
285
|
requirements: []
|
287
|
-
rubygems_version: 3.
|
286
|
+
rubygems_version: 3.1.2
|
288
287
|
signing_key:
|
289
288
|
specification_version: 4
|
290
289
|
summary: Builds man pages from Markdown
|
data/test/url_formatting.ronn
DELETED