[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

IHelp 0.3.2 - View the documentation for an object

Ilmari Heikkinen

11/13/2006 8:59:00 PM

IHelp lets you view the ri documentation of an object from Ruby.
Perfect for irb.

sudo gem install ihelp

Downloads: http://rubyforge.org/frs/?gro...
Documentation: http://ihelp.rub...
Project page: http://rubyforge.org/proje...


CHANGES

Now with Ruby 1.8.5 compatability fixes and an emacs renderer from rubikitch.


QUICK USAGE

"Hmm, how did String#center work again?"
> String.help:center

"What is this object and what can i do with it?"
> object.help

"Someone told me that I should look up Mutex#synchronize...
but I don't have that loaded."
> help "Mutex#synchronize"


LOADING AUTOMATICALLY IN IRB

Add the following to your .irbrc:

# Loading RI may take a second or two so let's make it
# snappier by loading in the background.
Thread.new do require 'ihelp' end

## Renderer to use, one of 'ri', 'rubydoc', 'emacs', 'source', 'html'
## default is 'ri'
# IHelp.renderer = 'rubydoc'

## Web browser to use with renderers 'rubydoc' and 'html'
## default is 'firefox'
# IHelp.web_browser = 'konqueror'