vote up 0 vote down star

I have not found a tab-completion script for RubyGem in Bash/Zsh.

Where can you get the tab-completion script for RubyGem in Bahs/Zsh?

flag

What exactly do you mean by tab-completion? Do you mean juts completing the commands available or completing the list of gems to install? – Terence Simpson May 24 at 12:24
@Terence: I mean just completing commands available. – Masi May 24 at 13:24

1 Answer

vote up 1 vote down check

Executable RubyGem commands are installed into /usr/bin or /usr/local/bin or whatever prefix Ruby is found under. Tab completion for commands should just work just like any other executable file in your PATH. If it's not working, verify that the directory RubyGems installs commands into is in your PATH.

There is currently no official method of doing tab completion for the parameters to any of these commands. If you need tab completion for a command installed via RubyGems, you'll need to write and/or install it yourself. See the Bash reference manual for details. There may already be a completion system for the specific command you're interested in, so be sure to google for it, but most commands installed via RubyGems do not have any auto-complete written for them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.