Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Looking for something like gem list within an RVM gemset but to have it ignore gems in the global and default gemsets so I can see, easily, exactly what gems are in the active gemset (and only the active gemset).

share|improve this question

2 Answers

up vote 5 down vote accepted

for global:

rvm @global do gem list

for other gemsets:

GEM_PATH=$GEM_HOME gem list

@global is a gemset that all other gemsets inherit for given ruby, it does not inherit for m itself so it's safe to select it and run gem list in it's context.

For all other gemsets you can use the fact that gem list displays gems from all paths available in GEM_HOME and GEM_PATH, resetting GEM_PATH to be equal GEM_HOME will make only one path available - the one from GEM_HOME so gem list will only show gems in the selected gemset, ignoring all other gemsets (at this time the @global, but RVM 2.0 will support multiple gemsets inheritance).

share|improve this answer
Please explain this. – John Saunders Sep 6 '12 at 19:56
but if you re-assign GEM_PATH for this then won't you have to set it back afterwards?!? – Meltemi Sep 6 '12 at 22:40
1  
no, because it's part of one command, this assignment takes effect only for this command, you could prefix it all with env just to be sure: env GEM_PATH=$GEM_HOME gem list – mpapis Sep 6 '12 at 22:55

Simplest way to do it is to use bash command which show list of directories in your current gemset directory

$ ls `rvm gemdir`/gems
share|improve this answer
works! what's going on there? I'm not familiar with ` on the command line. – Meltemi Sep 6 '12 at 19:53
ls just lists directory content taking your current gemset dir as argument. Gemset dir is taken from rvm gemdir command with appended /gems (it's the place where all gem folders live). 8) – Nick Kugaevsky Sep 6 '12 at 20:01
ya familiar with ls, etc. but hadn't seen the use of ` to enclose a variable? or expression? before... – Meltemi Sep 6 '12 at 20:49
1  
Backticks help to run enclosed command before running main. And give result of backticked? command to main. – Nick Kugaevsky Sep 6 '12 at 20:52
Thanks! learned 2 things today! – Meltemi Sep 6 '12 at 22:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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