I'm trying to find out all the remotely available versions of a specified gem

I tried with

gem list rhc --remote

but it shows

*** REMOTE GEMS ***
rhc (0.84.15)
rhcp (0.2.18)
rhcp_shell (0.2.12)

Any idea?

link|improve this question

61% accept rate
feedback

2 Answers

well, it was easier than I though (well, not really, let's say as easy as it should)

gem list rhc --remote --all

*** REMOTE GEMS ***
rhc (0.84.15, 0.84.13, 0.83.9, 0.82.18, 0.81.14, 0.80.5, 0.79.5, 0.77.8, 0.75.9, 0.74.6, 0.74.5, 0.73.14, 0.72.29, 0.71.2, 0.69.6, 0.69.3, 0.68.5)
rhcp (0.2.18, 0.2.17, 0.2.16, 0.2.15, 0.2.14, 0.1.9, 0.1.8, 0.1.7, 0.1.6, 0.1.5, 0.1.4, 0.1.3, 0.1.2)
rhcp_shell (0.2.12, 0.2.11, 0.0.9, 0.0.7, 0.0.6, 0.0.5, 0.0.4, 0.0.3, 0.0.2, 0.0.1)
link|improve this answer
1  
Also note that "rhc" is a regex, so if you only want to look at that one, you could search for gem list ^rhc$ and the "--remote" and "--all" flags can be abbreviated and combined for gem list ^rhc$ -ra – Joshua Cheek Feb 5 at 4:19
Thanks Joshua, nice tip – opensas Feb 5 at 14:10
feedback

Try:

gem list [STRING] [options]

For example:

gem list rhc -r

Or try:

gem list -r rhc

(the documentation, and the example provided seem to contradict each other - try both)


See the documentation:

http://docs.rubygems.org/read/chapter/10#page34

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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