Sha256: 0a5b2ef744ea27ea7425e4e30a5587aa8131b3f86ae81a46f432d5c9c392fae4

Contents?: true

Size: 812 Bytes

Versions: 6

Compression:

Stored size: 812 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 $

begin
  gem 'rdoc'
rescue NameError => e # --disable-gems
  raise unless e.name == :gem
rescue Gem::LoadError
end

require 'rdoc/rdoc'

begin
  r = RDoc::RDoc.new
  r.document ARGV
rescue SystemExit
  raise
rescue Exception => e
  if $DEBUG_RDOC then
    $stderr.puts e.message
    $stderr.puts "#{e.backtrace.join "\n\t"}"
    $stderr.puts
  elsif Interrupt === e then
    $stderr.puts
    $stderr.puts 'Interrupted'
  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

6 entries across 6 versions & 1 rubygems

Version Path
rdoc-3.9.5 bin/rdoc
rdoc-3.9.4 bin/rdoc
rdoc-3.9.3 bin/rdoc
rdoc-3.9.2 bin/rdoc
rdoc-3.9.1 bin/rdoc
rdoc-3.9 bin/rdoc