views:

86

answers:

1

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!

+4  A: 
require 'rubygems'
require 'net/ssh/multi'

...should take care of you.

Dave Pirotte
Agreed! You are right!
Christoph Schiessl