From 041842f515472abcd0d103216d5d38bf6a401db4 Mon Sep 17 00:00:00 2001 From: drbrain Date: Tue, 12 Feb 2008 01:27:52 +0000 Subject: Wrap parse_files' read in a version check for backwards compatibility. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15436 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/rdoc.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/rdoc/rdoc.rb b/lib/rdoc/rdoc.rb index 4b9fa8870..6b7de2f3b 100644 --- a/lib/rdoc/rdoc.rb +++ b/lib/rdoc/rdoc.rb @@ -192,7 +192,12 @@ module RDoc file_list.each do |fn| $stderr.printf("\n%*s: ", width, fn) unless options.quiet - content = File.open(fn, "r:ascii-8bit") {|f| f.read} + content = if RUBY_VERSION >= '1.9' then + File.open(fn, "r:ascii-8bit") { |f| f.read } + else + File.read fn + end + if /coding:\s*(\S+)/ =~ content[/\A(?:.*\n){0,2}/] if enc = Encoding.find($1) content.force_encoding(enc) -- cgit