So I've tried to install net::ssh::multi on mac using gems:
gems install net-ssh-multi
The installation went fine, however when I type:
require 'net/ssh/multi'
it says load error. I have no idea whats wrong with what I'm doing!
So I've tried to install net::ssh::multi on mac using gems:
gems install net-ssh-multi
The installation went fine, however when I type:
require 'net/ssh/multi'
it says load error. I have no idea whats wrong with what I'm doing!
require 'rubygems'
require 'net/ssh/multi'
...should take care of you.