summaryrefslogtreecommitdiffstats
path: root/bin/rdoc
blob: e50285478d36d04e907a2af89356b8c92f6a5a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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$

require 'rdoc/rdoc'

begin
  r = RDoc::RDoc.new
  r.document ARGV
rescue Interrupt
  $stderr.puts
  $stderr.puts "Interrupted"
rescue RDoc::Error => e
  $stderr.puts e.message
  exit 1
end