tags:

views:

23

answers:

1

my question is how do i fing net/ssh file in ruby . i am using 1.8.4 version of ruby

A: 

Described here. Basically:

$ gem install net-ssh

and in your ruby code:

require 'net/ssh'
bjg
I'm not sure whether that will work. The OP is using Ruby 1.8.4 which has been obsolete for ages. I'm pretty sure the latest version of `net/ssh` doesn't work on 1.8.4.
Jörg W Mittag
what i want to know is whether net/ssh come with ruby 1.8.4
amit