Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install multiple ruby gems at once?

Is is possible to install more than one gem at the same time with only one command?

like image 420
Juuro Avatar asked May 08 '12 12:05

Juuro


1 Answers

The gem install command accepts many parameters, so you can gem install nokogiri bundler in one shot, for instance.

As others said, Bundler and RVM makes everything connected to managing gems, versions and dependencies a real pleasure.

like image 84
i-blis Avatar answered Sep 17 '22 16:09

i-blis