When I tried to create some diagrams using Railroad in an existing Rails application, I got into an endless loop of getting "Could not find the GEMNAMEHERE gem ..." and issued the command "gem install GEMNAMEHERE", just to find the next stone that is missing ... more 30 times.
Are there any rake tasks or a call to the gem option that will list all the gems needed for the Rails application, so I can install them with a single gem install call?
I tried "less config / environment.rb | grep config.gem", but it returns only some of the gems that were not reported. Where are other stone requirements defined?
source
share