chutsu
chutsu

Reputation: 14103

Having problems with net::ssh::multi can't require it! Ruby

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

Answers (1)

Dave Pirotte
Dave Pirotte

Reputation: 3816

require 'rubygems'
require 'net/ssh/multi'

...should take care of you.

Upvotes: 5

Related Questions