1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/rdoc: Import RDoc 2.5.2

* lib/rdoc/parser/ruby.rb (RDoc::Parser::Ruby): Don't parse rdoc
  files, reverts r24976 in favor of include directive support in C
  parser.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2010-04-10 06:36:13 +00:00
parent ce2b574017
commit 1325437297
33 changed files with 395 additions and 162 deletions

View file

@ -73,10 +73,10 @@ class RDoc::Parser
true
elsif file =~ /erb\.rb$/ then
false
elsif s.scan(/<%|%>/).length >= 4 then
elsif s.scan(/<%|%>/).length >= 4 || s.index("\x00") then
true
else
s.count("^ -~\t\r\n").fdiv(s.size) > 0.3 || s.index("\x00")
s.count("^ -~\t\r\n").fdiv(s.size) > 0.3
end
end
@ -102,7 +102,9 @@ class RDoc::Parser
return if parser == RDoc::Parser::Simple and zip? file_name
# The default parser must not parse binary files
return if parser == RDoc::Parser::Simple and file_name !~ /\.(txt|rdoc)$/
ext_name = File.extname file_name
return parser if ext_name.empty?
return if parser == RDoc::Parser::Simple and ext_name !~ /txt|rdoc/
parser
end