X7ROOT File Manager
Current Path:
/opt/alt/ruby40/share/gems/gems/rdoc-7.0.4/lib/rdoc/parser
opt
/
alt
/
ruby40
/
share
/
gems
/
gems
/
rdoc-7.0.4
/
lib
/
rdoc
/
parser
/
??
..
??
c.rb
(35.46 KB)
??
changelog.rb
(8.71 KB)
??
markdown.rb
(472 B)
??
prism_ruby.rb
(38.2 KB)
??
rd.rb
(437 B)
??
ripper_state_lex.rb
(8 KB)
??
ruby.rb
(59.88 KB)
??
ruby_tools.rb
(2.58 KB)
??
simple.rb
(956 B)
??
text.rb
(306 B)
Editing: simple.rb
# frozen_string_literal: true ## # Parse a non-source file. We basically take the whole thing as one big # comment. class RDoc::Parser::Simple < RDoc::Parser include RDoc::Parser::Text parse_files_matching(//) attr_reader :content # :nodoc: ## # Prepare to parse a plain file def initialize(top_level, content, options, stats) super preprocess = RDoc::Markup::PreProcess.new @file_name, @options.rdoc_include content = RDoc::Text.expand_tabs(@content) @content, = preprocess.run_pre_processes(content, @top_level, 1, :simple) end ## # Extract the file contents and attach them to the TopLevel as a comment def scan content = remove_coding_comment @content comment = RDoc::Comment.new content, @top_level @top_level.comment = comment @top_level end ## # Removes the encoding magic comment from +text+ def remove_coding_comment(text) text.sub(/\A# .*coding[=:].*$/, '') end end
Upload File
Create Folder