Sha256: d0aeec43271444fc73cc2b5b7bd4e6673e81f3995d2b3dba6c861e55a53f314f
Contents?: true
Size: 689 Bytes
Versions: 8
Compression:
Stored size: 689 Bytes
Contents
#!/usr/bin/env ruby # # RDoc: Documentation tool for source code # (see lib/rdoc/rdoc.rb for more information) # # Copyright (c) 2003 Dave Thomas # Released under the same terms as Ruby # # $Revision: 15033 $ require 'rdoc/rdoc' begin r = RDoc::RDoc.new r.document ARGV rescue Interrupt $stderr.puts $stderr.puts "Interrupted" exit 1 rescue SystemExit raise rescue Exception => e if $DEBUG_RDOC then $stderr.puts e.message $stderr.puts "#{e.backtrace.join "\n\t"}" $stderr.puts else $stderr.puts "uh-oh! RDoc had a problem:" $stderr.puts e.message $stderr.puts $stderr.puts "run with --debug for full backtrace" end exit 1 end
Version data entries
8 entries across 8 versions & 2 rubygems