aboutsummaryrefslogtreecommitdiffstats
path: root/bin/rdoc
diff options
context:
space:
mode:
Diffstat (limited to 'bin/rdoc')
-rwxr-xr-xbin/rdoc6
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/rdoc b/bin/rdoc
index 64601a819e..aaa23292df 100755
--- a/bin/rdoc
+++ b/bin/rdoc
@@ -5,8 +5,6 @@
#
# Copyright (c) 2003 Dave Thomas
# Released under the same terms as Ruby
-#
-# $Revision$
begin
gem 'rdoc'
@@ -20,6 +18,10 @@ require 'rdoc/rdoc'
begin
r = RDoc::RDoc.new
r.document ARGV
+rescue Errno::ENOSPC
+ $stderr.puts 'Ran out of space creating documentation'
+ $stderr.puts
+ $stderr.puts 'Please free up some space and try again'
rescue SystemExit
raise
rescue Exception => e