From 4b93d732e406957e094e848093517359b9ffecf4 Mon Sep 17 00:00:00 2001 From: drbrain Date: Mon, 7 Jan 2008 06:56:46 +0000 Subject: Convert RDoc to OptionParser, clean up -h output, namespace Options under RDoc. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bin/rdoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'bin/rdoc') diff --git a/bin/rdoc b/bin/rdoc index 7192db2655..0642ec671b 100644 --- a/bin/rdoc +++ b/bin/rdoc @@ -21,7 +21,7 @@ # search path if necessary. def adjust_for_existing_rdoc(path) - + $stderr.puts %{ It seems as if you have a previously-installed RDoc in the directory #{path}. @@ -44,7 +44,7 @@ def adjust_for_existing_rdoc(path) end $:.each do |path| - if /site_ruby/ =~ path + if /site_ruby/ =~ path rdoc_path = File.join(path, 'rdoc', 'rdoc.rb') if File.exist?(rdoc_path) adjust_for_existing_rdoc(path) @@ -60,8 +60,8 @@ require 'rdoc/rdoc' begin r = RDoc::RDoc.new - r.document(ARGV) -rescue RDoc::RDocError => e + r.document ARGV +rescue RDoc::Error => e $stderr.puts e.message - exit(1) + exit 1 end -- cgit v1.2.3