While trying to produce some diagrams with Railroad on an existing Rails application, I fell into the endless cycle of receiving a "Could not find gem GEMNAMEHERE ... " and issuing a "gem install GEMNAMEHERE" command, just to find the next gem that's missing ... over 30 times.
Is there some rake tasks or gem option call that would list all the gems required by a Rails app, so I can install them with one call to "gem install"?
I tried to "less config/environment.rb | grep config.gem", but it returns only some of the gems that were reported missing. Where are the other gem requirements defined?