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

Version Path
voloko-sdoc-0.1.3 rdoc/bin/rdoc
voloko-sdoc-0.1.4 rdoc/bin/rdoc
voloko-sdoc-0.1.5 rdoc/bin/rdoc
voloko-sdoc-0.1.6 rdoc/bin/rdoc
voloko-sdoc-0.1.7 rdoc/bin/rdoc
rdoc-2.4.3 bin/rdoc
rdoc-2.4.1 bin/rdoc
rdoc-2.4.2 bin/rdoc