From: John Gabriele Date: 2006-06-22T09:57:20+09:00 Subject: Re: man pages on windows On 6/21/06, bpettichord@gmail.com wrote: > I'm running Ruby on Windows. How can i see the man pages for irb, etc? > > Bret > Although ruby itself has a man page, I don't believe the other 4 horsemen (irb, ri, gem, and rdoc) have man pages. For their docs, use: irb --help ri --help gem --help rdoc --help Incidentally, on my Debian system, I installed Ruby by-hand into /opt/ruby-1.8.4, so the ruby man page is /opt/ruby-1.8.4/man/man1/ruby.1, and it comes up when running "man ruby", but I've got no idea how the man command finds it. I never touched my $MANPATH after installing Ruby... though I don't think Debian uses a simple MANPATH env var these days anyway (it instead uses some fancy mandb index frobnicator thingy). Anyhow, no idea how you'd read the ruby man page on an MS platform. Google can find you one on the net though: http://www.die.net/doc/linux/man/man1/ruby.1.html ---John