[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Some issues with Ruby

Alexandre Rosenfeld

7/27/2007 7:59:00 PM

Hi,

I'm having a couple of issues, unfortunately I couldn't find anything on
the internet. I'm using Ubuntu 7.04, with Ruby 1.8 installed with
Synaptic.

- My irb doesnt autocomplete objects. When I press TAB, it autocompletes
paths, but not methods, variables, etc. I have readlines installed.

- When I want to use Gem packages, I have to "include 'rubygems'" before
I can use any package. This wasnt the case in Windows, is it needed in
Linux? Is there a way to avoid it?

- rbbr (Ruby Browser) can't find Gnome/Gtk class documentation. I tried
both the separate documentation package and downloaded the rbbr with api
package, but it doesnt show any documentation for Gnome classes. I had
this problem with all my Ubuntu installations. How can I get Gnome
classes documented in Ruby Browser?

Thanks
--
Posted via http://www.ruby-....

2 Answers

Joel VanderWerf

7/27/2007 8:16:00 PM

0

Alexandre Rosenfeld wrote:
> - My irb doesnt autocomplete objects. When I press TAB, it autocompletes
> paths, but not methods, variables, etc. I have readlines installed.

Use this command:

irb -r irb/completion

OR put this line in your .irbrc file:

require 'irb/completion'

> - When I want to use Gem packages, I have to "include 'rubygems'" before
> I can use any package. This wasnt the case in Windows, is it needed in
> Linux? Is there a way to avoid it?

Put

export RUBYOPT='rubygems'

in your shell's env file (.zshenv for me).

--
vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407

Alexandre Rosenfeld

7/27/2007 9:33:00 PM

0

Thanks a lot, it all worked very well.

Does anyone know how to fix the Gnome/Gtk documentation?
--
Posted via http://www.ruby-....