rdoc 6.0.4 → 6.1.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of rdoc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.travis.yml +7 -6
- data/Rakefile +6 -1
- data/lib/rdoc.rb +1 -5
- data/lib/rdoc/cross_reference.rb +29 -11
- data/lib/rdoc/generator/markup.rb +2 -12
- data/lib/rdoc/generator/template/json_index/js/navigation.js +3 -4
- data/lib/rdoc/markup.rb +10 -12
- data/lib/rdoc/markup/attribute_manager.rb +22 -22
- data/lib/rdoc/markup/attributes.rb +6 -6
- data/lib/rdoc/markup/formatter.rb +24 -23
- data/lib/rdoc/markup/heading.rb +3 -3
- data/lib/rdoc/markup/to_bs.rb +3 -3
- data/lib/rdoc/markup/to_html.rb +20 -20
- data/lib/rdoc/markup/to_html_crossref.rb +9 -14
- data/lib/rdoc/markup/to_html_snippet.rb +9 -9
- data/lib/rdoc/markup/to_label.rb +9 -9
- data/lib/rdoc/markup/to_markdown.rb +7 -7
- data/lib/rdoc/markup/to_rdoc.rb +5 -5
- data/lib/rdoc/markup/to_tt_only.rb +2 -2
- data/lib/rdoc/parser/ripper_state_lex.rb +53 -83
- data/lib/rdoc/parser/ruby.rb +149 -78
- data/lib/rdoc/parser/ruby_tools.rb +15 -7
- data/lib/rdoc/rdoc.rb +1 -1
- data/lib/rdoc/store.rb +15 -5
- data/lib/rdoc/tom_doc.rb +9 -3
- data/lib/rdoc/top_level.rb +8 -2
- data/lib/rdoc/version.rb +8 -0
- data/rdoc.gemspec +5 -10
- metadata +17 -4
- data/lib/rdoc/markup/inline.rb +0 -2
- data/lib/rdoc/markup/special.rb +0 -41
@@ -25,12 +25,10 @@ module RDoc::Parser::RubyTools
|
|
25
25
|
tk = @scanner[@scanner_point]
|
26
26
|
@scanner_point += 1
|
27
27
|
@read.push tk[:text]
|
28
|
-
puts "get_tk1 => #{tk.inspect}" if $TOKEN_DEBUG
|
29
28
|
end
|
30
29
|
else
|
31
30
|
@read.push @unget_read.shift
|
32
31
|
tk = @tokens.shift
|
33
|
-
puts "get_tk2 => #{tk.inspect}" if $TOKEN_DEBUG
|
34
32
|
end
|
35
33
|
|
36
34
|
if tk == nil || :on___end__ == tk[:kind]
|
@@ -111,17 +109,27 @@ module RDoc::Parser::RubyTools
|
|
111
109
|
@scanner_point = 0
|
112
110
|
end
|
113
111
|
|
114
|
-
|
115
|
-
|
112
|
+
##
|
113
|
+
# Skips whitespace tokens including newlines
|
114
|
+
|
115
|
+
def skip_tkspace
|
116
|
+
tokens = []
|
117
|
+
|
118
|
+
while (tk = get_tk) and (:on_sp == tk[:kind] or :on_nl == tk[:kind] or :on_ignored_nl == tk[:kind]) do
|
119
|
+
tokens.push(tk)
|
120
|
+
end
|
121
|
+
|
122
|
+
unget_tk(tk)
|
123
|
+
tokens
|
116
124
|
end
|
117
125
|
|
118
126
|
##
|
119
|
-
# Skips whitespace tokens
|
127
|
+
# Skips whitespace tokens excluding newlines
|
120
128
|
|
121
|
-
def
|
129
|
+
def skip_tkspace_without_nl
|
122
130
|
tokens = []
|
123
131
|
|
124
|
-
while (tk = get_tk) and
|
132
|
+
while (tk = get_tk) and :on_sp == tk[:kind] do
|
125
133
|
tokens.push(tk)
|
126
134
|
end
|
127
135
|
|
data/lib/rdoc/rdoc.rb
CHANGED
@@ -355,7 +355,7 @@ option)
|
|
355
355
|
relative_path.relative_path_from @options.page_dir
|
356
356
|
end
|
357
357
|
|
358
|
-
top_level = @store.add_file filename, relative_path.to_s
|
358
|
+
top_level = @store.add_file filename, relative_name: relative_path.to_s
|
359
359
|
|
360
360
|
parser = RDoc::Parser.for top_level, filename, content, @options, @stats
|
361
361
|
|
data/lib/rdoc/store.rb
CHANGED
@@ -148,6 +148,7 @@ class RDoc::Store
|
|
148
148
|
@classes_hash = {}
|
149
149
|
@modules_hash = {}
|
150
150
|
@files_hash = {}
|
151
|
+
@text_files_hash = {}
|
151
152
|
|
152
153
|
@c_enclosure_classes = {}
|
153
154
|
@c_enclosure_names = {}
|
@@ -184,16 +185,24 @@ class RDoc::Store
|
|
184
185
|
# Adds the file with +name+ as an RDoc::TopLevel to the store. Returns the
|
185
186
|
# created RDoc::TopLevel.
|
186
187
|
|
187
|
-
def add_file absolute_name, relative_name
|
188
|
+
def add_file absolute_name, relative_name: absolute_name, parser: nil
|
188
189
|
unless top_level = @files_hash[relative_name] then
|
189
190
|
top_level = RDoc::TopLevel.new absolute_name, relative_name
|
191
|
+
top_level.parser = parser if parser
|
190
192
|
top_level.store = self
|
191
193
|
@files_hash[relative_name] = top_level
|
194
|
+
@text_files_hash[relative_name] = top_level if top_level.text?
|
192
195
|
end
|
193
196
|
|
194
197
|
top_level
|
195
198
|
end
|
196
199
|
|
200
|
+
def update_parser_of_file(absolute_name, parser)
|
201
|
+
if top_level = @files_hash[absolute_name] then
|
202
|
+
@text_files_hash[absolute_name] = top_level if top_level.text?
|
203
|
+
end
|
204
|
+
end
|
205
|
+
|
197
206
|
##
|
198
207
|
# Returns all classes discovered by RDoc
|
199
208
|
|
@@ -428,8 +437,8 @@ class RDoc::Store
|
|
428
437
|
# +file_name+
|
429
438
|
|
430
439
|
def find_text_page file_name
|
431
|
-
@
|
432
|
-
file.
|
440
|
+
@text_files_hash.each_value.find do |file|
|
441
|
+
file.full_name == file_name
|
433
442
|
end
|
434
443
|
end
|
435
444
|
|
@@ -537,6 +546,7 @@ class RDoc::Store
|
|
537
546
|
@cache[:pages].each do |page_name|
|
538
547
|
page = load_page page_name
|
539
548
|
@files_hash[page_name] = page
|
549
|
+
@text_files_hash[page_name] = page if page.text?
|
540
550
|
end
|
541
551
|
end
|
542
552
|
|
@@ -712,8 +722,8 @@ class RDoc::Store
|
|
712
722
|
# Returns the RDoc::TopLevel that is a text file and has the given +name+
|
713
723
|
|
714
724
|
def page name
|
715
|
-
@
|
716
|
-
file.
|
725
|
+
@text_files_hash.each_value.find do |file|
|
726
|
+
file.page_name == name
|
717
727
|
end
|
718
728
|
end
|
719
729
|
|
data/lib/rdoc/tom_doc.rb
CHANGED
@@ -180,12 +180,19 @@ class RDoc::TomDoc < RDoc::Markup::Parser
|
|
180
180
|
|
181
181
|
case type
|
182
182
|
when :TEXT then
|
183
|
-
@section = 'Returns' if data =~ /\
|
183
|
+
@section = 'Returns' if data =~ /\A(Returns|Raises)/
|
184
184
|
|
185
185
|
paragraph << data
|
186
186
|
when :NEWLINE then
|
187
187
|
if :TEXT == peek_token[0] then
|
188
|
-
|
188
|
+
# Lines beginning with 'Raises' in the Returns section should not be
|
189
|
+
# treated as multiline text
|
190
|
+
if 'Returns' == @section and
|
191
|
+
peek_token[1].start_with?('Raises') then
|
192
|
+
break
|
193
|
+
else
|
194
|
+
paragraph << ' '
|
195
|
+
end
|
189
196
|
else
|
190
197
|
break
|
191
198
|
end
|
@@ -255,4 +262,3 @@ class RDoc::TomDoc < RDoc::Markup::Parser
|
|
255
262
|
end
|
256
263
|
|
257
264
|
end
|
258
|
-
|
data/lib/rdoc/top_level.rb
CHANGED
@@ -33,7 +33,7 @@ class RDoc::TopLevel < RDoc::Context
|
|
33
33
|
##
|
34
34
|
# The parser class that processed this file
|
35
35
|
|
36
|
-
|
36
|
+
attr_reader :parser
|
37
37
|
|
38
38
|
##
|
39
39
|
# Creates a new TopLevel for the file at +absolute_name+. If documentation
|
@@ -52,6 +52,12 @@ class RDoc::TopLevel < RDoc::Context
|
|
52
52
|
@classes_or_modules = []
|
53
53
|
end
|
54
54
|
|
55
|
+
def parser=(val)
|
56
|
+
@parser = val
|
57
|
+
@store.update_parser_of_file(absolute_name, val) if @store
|
58
|
+
@parser
|
59
|
+
end
|
60
|
+
|
55
61
|
##
|
56
62
|
# An RDoc::TopLevel is equal to another with the same relative_name
|
57
63
|
|
@@ -272,7 +278,7 @@ class RDoc::TopLevel < RDoc::Context
|
|
272
278
|
# Is this TopLevel from a text file instead of a source code file?
|
273
279
|
|
274
280
|
def text?
|
275
|
-
@parser and @parser.
|
281
|
+
@parser and @parser.include? RDoc::Parser::Text
|
276
282
|
end
|
277
283
|
|
278
284
|
def to_s # :nodoc:
|
data/lib/rdoc/version.rb
ADDED
data/rdoc.gemspec
CHANGED
@@ -1,14 +1,8 @@
|
|
1
1
|
begin
|
2
|
-
require_relative "lib/rdoc"
|
2
|
+
require_relative "lib/rdoc/version"
|
3
3
|
rescue LoadError
|
4
|
-
|
5
|
-
|
6
|
-
require_relative "../rdoc"
|
7
|
-
rescue LoadError
|
8
|
-
# for JRuby
|
9
|
-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
|
10
|
-
require "rdoc"
|
11
|
-
end
|
4
|
+
# for Ruby repository
|
5
|
+
require_relative "version"
|
12
6
|
end
|
13
7
|
|
14
8
|
Gem::Specification.new do |s|
|
@@ -38,7 +32,7 @@ RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentat
|
|
38
32
|
s.executables = ["rdoc", "ri"]
|
39
33
|
s.require_paths = ["lib"]
|
40
34
|
# for ruby core repository. It was generated by `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
41
|
-
s.files = [".document", ".gitignore", ".travis.yml", "CONTRIBUTING.rdoc", "CVE-2013-0256.rdoc", "ExampleMarkdown.md", "ExampleRDoc.rdoc", "Gemfile", "History.rdoc", "LEGAL.rdoc", "LICENSE.rdoc", "README.rdoc", "RI.rdoc", "Rakefile", "TODO.rdoc", "appveyor.yml", "bin/console", "bin/setup", "exe/rdoc", "exe/ri", "lib/rdoc.rb", "lib/rdoc/alias.rb", "lib/rdoc/anon_class.rb", "lib/rdoc/any_method.rb", "lib/rdoc/attr.rb", "lib/rdoc/class_module.rb", "lib/rdoc/code_object.rb", "lib/rdoc/code_objects.rb", "lib/rdoc/comment.rb", "lib/rdoc/constant.rb", "lib/rdoc/context.rb", "lib/rdoc/context/section.rb", "lib/rdoc/cross_reference.rb", "lib/rdoc/encoding.rb", "lib/rdoc/erb_partial.rb", "lib/rdoc/erbio.rb", "lib/rdoc/extend.rb", "lib/rdoc/generator.rb", "lib/rdoc/generator/darkfish.rb", "lib/rdoc/generator/json_index.rb", "lib/rdoc/generator/markup.rb", "lib/rdoc/generator/pot.rb", "lib/rdoc/generator/pot/message_extractor.rb", "lib/rdoc/generator/pot/po.rb", "lib/rdoc/generator/pot/po_entry.rb", "lib/rdoc/generator/ri.rb", "lib/rdoc/generator/template/darkfish/.document", "lib/rdoc/generator/template/darkfish/_footer.rhtml", "lib/rdoc/generator/template/darkfish/_head.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml", "lib/rdoc/generator/template/darkfish/class.rhtml", "lib/rdoc/generator/template/darkfish/css/fonts.css", "lib/rdoc/generator/template/darkfish/css/rdoc.css", "lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf", "lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf", "lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf", "lib/rdoc/generator/template/darkfish/images/add.png", "lib/rdoc/generator/template/darkfish/images/arrow_up.png", "lib/rdoc/generator/template/darkfish/images/brick.png", "lib/rdoc/generator/template/darkfish/images/brick_link.png", "lib/rdoc/generator/template/darkfish/images/bug.png", "lib/rdoc/generator/template/darkfish/images/bullet_black.png", "lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png", "lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png", "lib/rdoc/generator/template/darkfish/images/date.png", "lib/rdoc/generator/template/darkfish/images/delete.png", "lib/rdoc/generator/template/darkfish/images/find.png", "lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif", "lib/rdoc/generator/template/darkfish/images/macFFBgHack.png", "lib/rdoc/generator/template/darkfish/images/package.png", "lib/rdoc/generator/template/darkfish/images/page_green.png", "lib/rdoc/generator/template/darkfish/images/page_white_text.png", "lib/rdoc/generator/template/darkfish/images/page_white_width.png", "lib/rdoc/generator/template/darkfish/images/plugin.png", "lib/rdoc/generator/template/darkfish/images/ruby.png", "lib/rdoc/generator/template/darkfish/images/tag_blue.png", "lib/rdoc/generator/template/darkfish/images/tag_green.png", "lib/rdoc/generator/template/darkfish/images/transparent.png", "lib/rdoc/generator/template/darkfish/images/wrench.png", "lib/rdoc/generator/template/darkfish/images/wrench_orange.png", "lib/rdoc/generator/template/darkfish/images/zoom.png", "lib/rdoc/generator/template/darkfish/index.rhtml", "lib/rdoc/generator/template/darkfish/js/darkfish.js", "lib/rdoc/generator/template/darkfish/js/jquery.js", "lib/rdoc/generator/template/darkfish/js/search.js", "lib/rdoc/generator/template/darkfish/page.rhtml", "lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml", "lib/rdoc/generator/template/darkfish/servlet_root.rhtml", "lib/rdoc/generator/template/darkfish/table_of_contents.rhtml", "lib/rdoc/generator/template/json_index/.document", "lib/rdoc/generator/template/json_index/js/navigation.js", "lib/rdoc/generator/template/json_index/js/searcher.js", "lib/rdoc/ghost_method.rb", "lib/rdoc/i18n.rb", "lib/rdoc/i18n/locale.rb", "lib/rdoc/i18n/text.rb", "lib/rdoc/include.rb", "lib/rdoc/known_classes.rb", "lib/rdoc/markdown.kpeg", "lib/rdoc/markdown/entities.rb", "lib/rdoc/markdown/literals.kpeg", "lib/rdoc/markup.rb", "lib/rdoc/markup/attr_changer.rb", "lib/rdoc/markup/attr_span.rb", "lib/rdoc/markup/attribute_manager.rb", "lib/rdoc/markup/attributes.rb", "lib/rdoc/markup/blank_line.rb", "lib/rdoc/markup/block_quote.rb", "lib/rdoc/markup/document.rb", "lib/rdoc/markup/formatter.rb", "lib/rdoc/markup/formatter_test_case.rb", "lib/rdoc/markup/hard_break.rb", "lib/rdoc/markup/heading.rb", "lib/rdoc/markup/include.rb", "lib/rdoc/markup/indented_paragraph.rb", "lib/rdoc/markup/
|
35
|
+
s.files = [".document", ".gitignore", ".travis.yml", "CONTRIBUTING.rdoc", "CVE-2013-0256.rdoc", "ExampleMarkdown.md", "ExampleRDoc.rdoc", "Gemfile", "History.rdoc", "LEGAL.rdoc", "LICENSE.rdoc", "README.rdoc", "RI.rdoc", "Rakefile", "TODO.rdoc", "appveyor.yml", "bin/console", "bin/setup", "exe/rdoc", "exe/ri", "lib/rdoc.rb", "lib/rdoc/alias.rb", "lib/rdoc/anon_class.rb", "lib/rdoc/any_method.rb", "lib/rdoc/attr.rb", "lib/rdoc/class_module.rb", "lib/rdoc/code_object.rb", "lib/rdoc/code_objects.rb", "lib/rdoc/comment.rb", "lib/rdoc/constant.rb", "lib/rdoc/context.rb", "lib/rdoc/context/section.rb", "lib/rdoc/cross_reference.rb", "lib/rdoc/encoding.rb", "lib/rdoc/erb_partial.rb", "lib/rdoc/erbio.rb", "lib/rdoc/extend.rb", "lib/rdoc/generator.rb", "lib/rdoc/generator/darkfish.rb", "lib/rdoc/generator/json_index.rb", "lib/rdoc/generator/markup.rb", "lib/rdoc/generator/pot.rb", "lib/rdoc/generator/pot/message_extractor.rb", "lib/rdoc/generator/pot/po.rb", "lib/rdoc/generator/pot/po_entry.rb", "lib/rdoc/generator/ri.rb", "lib/rdoc/generator/template/darkfish/.document", "lib/rdoc/generator/template/darkfish/_footer.rhtml", "lib/rdoc/generator/template/darkfish/_head.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_classes.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_includes.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_installed.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_pages.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_parent.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_search.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_sections.rhtml", "lib/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml", "lib/rdoc/generator/template/darkfish/class.rhtml", "lib/rdoc/generator/template/darkfish/css/fonts.css", "lib/rdoc/generator/template/darkfish/css/rdoc.css", "lib/rdoc/generator/template/darkfish/fonts/Lato-Light.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-LightItalic.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-Regular.ttf", "lib/rdoc/generator/template/darkfish/fonts/Lato-RegularItalic.ttf", "lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Bold.ttf", "lib/rdoc/generator/template/darkfish/fonts/SourceCodePro-Regular.ttf", "lib/rdoc/generator/template/darkfish/images/add.png", "lib/rdoc/generator/template/darkfish/images/arrow_up.png", "lib/rdoc/generator/template/darkfish/images/brick.png", "lib/rdoc/generator/template/darkfish/images/brick_link.png", "lib/rdoc/generator/template/darkfish/images/bug.png", "lib/rdoc/generator/template/darkfish/images/bullet_black.png", "lib/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png", "lib/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png", "lib/rdoc/generator/template/darkfish/images/date.png", "lib/rdoc/generator/template/darkfish/images/delete.png", "lib/rdoc/generator/template/darkfish/images/find.png", "lib/rdoc/generator/template/darkfish/images/loadingAnimation.gif", "lib/rdoc/generator/template/darkfish/images/macFFBgHack.png", "lib/rdoc/generator/template/darkfish/images/package.png", "lib/rdoc/generator/template/darkfish/images/page_green.png", "lib/rdoc/generator/template/darkfish/images/page_white_text.png", "lib/rdoc/generator/template/darkfish/images/page_white_width.png", "lib/rdoc/generator/template/darkfish/images/plugin.png", "lib/rdoc/generator/template/darkfish/images/ruby.png", "lib/rdoc/generator/template/darkfish/images/tag_blue.png", "lib/rdoc/generator/template/darkfish/images/tag_green.png", "lib/rdoc/generator/template/darkfish/images/transparent.png", "lib/rdoc/generator/template/darkfish/images/wrench.png", "lib/rdoc/generator/template/darkfish/images/wrench_orange.png", "lib/rdoc/generator/template/darkfish/images/zoom.png", "lib/rdoc/generator/template/darkfish/index.rhtml", "lib/rdoc/generator/template/darkfish/js/darkfish.js", "lib/rdoc/generator/template/darkfish/js/jquery.js", "lib/rdoc/generator/template/darkfish/js/search.js", "lib/rdoc/generator/template/darkfish/page.rhtml", "lib/rdoc/generator/template/darkfish/servlet_not_found.rhtml", "lib/rdoc/generator/template/darkfish/servlet_root.rhtml", "lib/rdoc/generator/template/darkfish/table_of_contents.rhtml", "lib/rdoc/generator/template/json_index/.document", "lib/rdoc/generator/template/json_index/js/navigation.js", "lib/rdoc/generator/template/json_index/js/searcher.js", "lib/rdoc/ghost_method.rb", "lib/rdoc/i18n.rb", "lib/rdoc/i18n/locale.rb", "lib/rdoc/i18n/text.rb", "lib/rdoc/include.rb", "lib/rdoc/known_classes.rb", "lib/rdoc/markdown.kpeg", "lib/rdoc/markdown/entities.rb", "lib/rdoc/markdown/literals.kpeg", "lib/rdoc/markup.rb", "lib/rdoc/markup/attr_changer.rb", "lib/rdoc/markup/attr_span.rb", "lib/rdoc/markup/attribute_manager.rb", "lib/rdoc/markup/attributes.rb", "lib/rdoc/markup/blank_line.rb", "lib/rdoc/markup/block_quote.rb", "lib/rdoc/markup/document.rb", "lib/rdoc/markup/formatter.rb", "lib/rdoc/markup/formatter_test_case.rb", "lib/rdoc/markup/hard_break.rb", "lib/rdoc/markup/heading.rb", "lib/rdoc/markup/include.rb", "lib/rdoc/markup/indented_paragraph.rb", "lib/rdoc/markup/list.rb", "lib/rdoc/markup/list_item.rb", "lib/rdoc/markup/paragraph.rb", "lib/rdoc/markup/parser.rb", "lib/rdoc/markup/pre_process.rb", "lib/rdoc/markup/raw.rb", "lib/rdoc/markup/rule.rb", "lib/rdoc/markup/text_formatter_test_case.rb", "lib/rdoc/markup/to_ansi.rb", "lib/rdoc/markup/to_bs.rb", "lib/rdoc/markup/to_html.rb", "lib/rdoc/markup/to_html_crossref.rb", "lib/rdoc/markup/to_html_snippet.rb", "lib/rdoc/markup/to_joined_paragraph.rb", "lib/rdoc/markup/to_label.rb", "lib/rdoc/markup/to_markdown.rb", "lib/rdoc/markup/to_rdoc.rb", "lib/rdoc/markup/to_table_of_contents.rb", "lib/rdoc/markup/to_test.rb", "lib/rdoc/markup/to_tt_only.rb", "lib/rdoc/markup/verbatim.rb", "lib/rdoc/meta_method.rb", "lib/rdoc/method_attr.rb", "lib/rdoc/mixin.rb", "lib/rdoc/normal_class.rb", "lib/rdoc/normal_module.rb", "lib/rdoc/options.rb", "lib/rdoc/parser.rb", "lib/rdoc/parser/c.rb", "lib/rdoc/parser/changelog.rb", "lib/rdoc/parser/markdown.rb", "lib/rdoc/parser/rd.rb", "lib/rdoc/parser/ripper_state_lex.rb", "lib/rdoc/parser/ruby.rb", "lib/rdoc/parser/ruby_tools.rb", "lib/rdoc/parser/simple.rb", "lib/rdoc/parser/text.rb", "lib/rdoc/rd.rb", "lib/rdoc/rd/block_parser.ry", "lib/rdoc/rd/inline.rb", "lib/rdoc/rd/inline_parser.ry", "lib/rdoc/rdoc.rb", "lib/rdoc/require.rb", "lib/rdoc/ri.rb", "lib/rdoc/ri/driver.rb", "lib/rdoc/ri/formatter.rb", "lib/rdoc/ri/paths.rb", "lib/rdoc/ri/store.rb", "lib/rdoc/ri/task.rb", "lib/rdoc/rubygems_hook.rb", "lib/rdoc/servlet.rb", "lib/rdoc/single_class.rb", "lib/rdoc/stats.rb", "lib/rdoc/stats/normal.rb", "lib/rdoc/stats/quiet.rb", "lib/rdoc/stats/verbose.rb", "lib/rdoc/store.rb", "lib/rdoc/task.rb", "lib/rdoc/text.rb", "lib/rdoc/token_stream.rb", "lib/rdoc/tom_doc.rb", "lib/rdoc/top_level.rb", "lib/rdoc/version.rb", "rdoc.gemspec"]
|
42
36
|
# files from .gitignore
|
43
37
|
s.files << "lib/rdoc/rd/block_parser.rb" << "lib/rdoc/rd/inline_parser.rb" << "lib/rdoc/markdown.rb" << "lib/rdoc/markdown/literals.rb"
|
44
38
|
|
@@ -64,4 +58,5 @@ RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentat
|
|
64
58
|
s.add_development_dependency("racc", "> 1.4.10")
|
65
59
|
s.add_development_dependency("kpeg")
|
66
60
|
s.add_development_dependency("minitest", "~> 5")
|
61
|
+
s.add_development_dependency("rubocop")
|
67
62
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rdoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.
|
4
|
+
version: 6.1.0.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eric Hodel
|
@@ -14,7 +14,7 @@ authors:
|
|
14
14
|
autorequire:
|
15
15
|
bindir: exe
|
16
16
|
cert_chain: []
|
17
|
-
date: 2018-
|
17
|
+
date: 2018-10-17 00:00:00.000000000 Z
|
18
18
|
dependencies:
|
19
19
|
- !ruby/object:Gem::Dependency
|
20
20
|
name: rake
|
@@ -72,6 +72,20 @@ dependencies:
|
|
72
72
|
- - "~>"
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '5'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: rubocop
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
type: :development
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
75
89
|
description: |
|
76
90
|
RDoc produces HTML and command-line documentation for Ruby projects.
|
77
91
|
RDoc includes the +rdoc+ and +ri+ tools for generating and displaying documentation from the command-line.
|
@@ -231,7 +245,6 @@ files:
|
|
231
245
|
- lib/rdoc/markup/heading.rb
|
232
246
|
- lib/rdoc/markup/include.rb
|
233
247
|
- lib/rdoc/markup/indented_paragraph.rb
|
234
|
-
- lib/rdoc/markup/inline.rb
|
235
248
|
- lib/rdoc/markup/list.rb
|
236
249
|
- lib/rdoc/markup/list_item.rb
|
237
250
|
- lib/rdoc/markup/paragraph.rb
|
@@ -239,7 +252,6 @@ files:
|
|
239
252
|
- lib/rdoc/markup/pre_process.rb
|
240
253
|
- lib/rdoc/markup/raw.rb
|
241
254
|
- lib/rdoc/markup/rule.rb
|
242
|
-
- lib/rdoc/markup/special.rb
|
243
255
|
- lib/rdoc/markup/text_formatter_test_case.rb
|
244
256
|
- lib/rdoc/markup/to_ansi.rb
|
245
257
|
- lib/rdoc/markup/to_bs.rb
|
@@ -297,6 +309,7 @@ files:
|
|
297
309
|
- lib/rdoc/token_stream.rb
|
298
310
|
- lib/rdoc/tom_doc.rb
|
299
311
|
- lib/rdoc/top_level.rb
|
312
|
+
- lib/rdoc/version.rb
|
300
313
|
- rdoc.gemspec
|
301
314
|
homepage: https://ruby.github.io/rdoc
|
302
315
|
licenses:
|
data/lib/rdoc/markup/inline.rb
DELETED
data/lib/rdoc/markup/special.rb
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
##
|
3
|
-
# Hold details of a special sequence
|
4
|
-
|
5
|
-
class RDoc::Markup::Special
|
6
|
-
|
7
|
-
##
|
8
|
-
# Special type
|
9
|
-
|
10
|
-
attr_reader :type
|
11
|
-
|
12
|
-
##
|
13
|
-
# Special text
|
14
|
-
|
15
|
-
attr_accessor :text
|
16
|
-
|
17
|
-
##
|
18
|
-
# Creates a new special sequence of +type+ with +text+
|
19
|
-
|
20
|
-
def initialize(type, text)
|
21
|
-
@type, @text = type, text
|
22
|
-
end
|
23
|
-
|
24
|
-
##
|
25
|
-
# Specials are equal when the have the same text and type
|
26
|
-
|
27
|
-
def ==(o)
|
28
|
-
self.text == o.text && self.type == o.type
|
29
|
-
end
|
30
|
-
|
31
|
-
def inspect # :nodoc:
|
32
|
-
"#<RDoc::Markup::Special:0x%x @type=%p, @text=%p>" % [
|
33
|
-
object_id, @type, text.dump]
|
34
|
-
end
|
35
|
-
|
36
|
-
def to_s # :nodoc:
|
37
|
-
"Special: type=#{type} text=#{text.dump}"
|
38
|
-
end
|
39
|
-
|
40
|
-
end
|
41
|
-
|