Networking issues :: ssh :: multi may not require this! Ruby
So I tried to install net :: ssh :: multi on mac using gems:
gems install net-ssh-multi
The installation went fine, however when typing:
require 'net/ssh/multi'
it says download error. I don't know what happened to what I do!
+2
chutsu
source
to share
1 answer
require 'rubygems'
require 'net/ssh/multi'
... should take care of you.
+5
Dave pirotte
source
to share