Reputation: 14103
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!
Upvotes: 2
Views: 347
Reputation: 3816
require 'rubygems'
require 'net/ssh/multi'
...should take care of you.
Upvotes: 5