How to test gems installation

Hello,

I've just installed Ruby Gems on my OS X machine. Now I'd like to test
whether it works or not without downloading a gem (I wouldn't need it
anyways). Is there a way to verify that my installation works?

Thank you very much in advance.

···

--
Posted via http://www.ruby-forum.com/.

on terminal :

~> gem list -r

# => r stands for remote
# => u'll get the installable list of remotely available gems

~> gem list -l

# => l stands for local
# => u'll get the allready installed gems

~> gem env

# => speaks by itseld :wink:

~> gem_server

# point a browser to <http://localhost:8808/&gt;
# => u'll get RDoc

Yvon

···

Le 9 sept. 06 à 10:29, Lucas Holland a écrit :

I've just installed Ruby Gems on my OS X machine. Now I'd like to test
whether it works or not without downloading a gem (I wouldn't need it
anyways). Is there a way to verify that my installation works?