When I download something using gem
I'd like to be able to just download the gem, and then choose whether or not I want to install it. I'm asking this because I'd like to install a particular gem on more than one computers ( without installing from the internet on each one ).
views:
232answers:
2
+7
A:
gem fetch
So, something like $ gem fetch gosu
... this will leave gosu-0.7.14.gem
in the current directory.
This will work even if you have already installed it.
DigitalRoss
2009-09-09 19:42:36
I liked the `gosu` fetch. Is exactly what I want to do :)
Geo
2009-09-09 19:45:04
+1
A:
Most of the gems are hosted on github.com right now, you just have to clone the repo.
khelll
2009-09-14 23:37:12