Discussion:
Error: no such file to load -- net/ssh/gateway
ericindc
2009-07-02 19:05:54 UTC
Permalink
I've been uninstall, reinstalling, etc. to try and get Capistrano
working. Just trying to do a simple cap --version produces the
following error message. It seems like it's just thinking the net-ssh-
gateway gem isn't installed.

cap --version
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
`gem_original_require': no such file to load -- net/ssh/gateway
(LoadError)
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration/connections.rb:2
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:
31:in `gem_original_require'
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration.rb:4
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:
31:in `gem_original_require'
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano.rb:1
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:
31:in `gem_original_require'
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/cli.rb:1
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:
31:in `gem_original_require'
from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/bin/cap:3
from /usr/local/bin/cap:19:in `load'
from /usr/local/bin/cap:19


ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]


gem list --local | grep -i net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
Lee Hambley
2009-07-02 19:21:47 UTC
Permalink
Eric,
It may be prudent to reinstall those gems? I can think of a few other things
that might manifest that way, but first things first!

- Lee
Post by ericindc
I've been uninstall, reinstalling, etc. to try and get Capistrano
working. Just trying to do a simple cap --version produces the
following error message. It seems like it's just thinking the net-ssh-
gateway gem isn't installed.
cap --version
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
`gem_original_require': no such file to load -- net/ssh/gateway
(LoadError)
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration/connections.rb:2
31:in `gem_original_require'
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration.rb:4
31:in `gem_original_require'
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano.rb:1
31:in `gem_original_require'
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/cli.rb:1
31:in `gem_original_require'
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/bin/cap:3
from /usr/local/bin/cap:19:in `load'
from /usr/local/bin/cap:19
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
gem list --local | grep -i net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Capistrano" group.
To post to this group, send email to capistrano-/***@public.gmane.org
To unsubscribe from this group, send email to capistrano+unsubscribe-/***@public.gmane.org
For more options, visit this group at http://groups.google.co.uk/group/capistrano?hl=en
-~----------~----~----~----~------~----~------~--~---
ericindc
2009-07-02 19:34:34 UTC
Permalink
Something seems a little weird...

gem list --local | grep net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)


sudo gem uninstall -a net-ssh net-sftp net-scp net-ssh-gateway
highline echoe
ERROR: While executing gem ... (Gem::InstallError)
Unknown gem net-ssh >= 0


ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]



ls /usr/local/lib/ruby/gems/1.8/gems | grep -i net (returns nothing)


ls /Users/Eric/.gem/ruby/1.8 | grep -i net (returns nothing

After all that, I tried sudo gem install capistrano and it only tried
to install the capistrano gem, seemingly not it's dependencies. It
did this the last time as well and I had to install the dependencies
individually.
Post by Lee Hambley
Eric,
It may be prudent to reinstall those gems? I can think of a few other things
that might manifest that way, but first things first!
- Lee
Post by ericindc
I've been uninstall, reinstalling, etc. to try and get Capistrano
working.  Just trying to do a simple cap --version produces the
following error message.  It seems like it's just thinking the net-ssh-
gateway gem isn't installed.
 cap --version
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
`gem_original_require': no such file to load -- net/ssh/gateway
(LoadError)
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration/connections.rb:2
31:in `gem_original_require'
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration.rb:4
31:in `gem_original_require'
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano.rb:1
31:in `gem_original_require'
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/cli.rb:1
31:in `gem_original_require'
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/bin/cap:3
       from /usr/local/bin/cap:19:in `load'
       from /usr/local/bin/cap:19
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
gem list --local | grep -i net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
Lee Hambley
2009-07-02 19:35:34 UTC
Permalink
What version of rubygems are you using, and what O/S ?... are you using
vendor ruby, or a specially installed one ?
- Lee
Post by ericindc
Something seems a little weird...
gem list --local | grep net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
sudo gem uninstall -a net-ssh net-sftp net-scp net-ssh-gateway
highline echoe
ERROR: While executing gem ... (Gem::InstallError)
Unknown gem net-ssh >= 0
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
ls /usr/local/lib/ruby/gems/1.8/gems | grep -i net (returns nothing)
ls /Users/Eric/.gem/ruby/1.8 | grep -i net (returns nothing
After all that, I tried sudo gem install capistrano and it only tried
to install the capistrano gem, seemingly not it's dependencies. It
did this the last time as well and I had to install the dependencies
individually.
Post by Lee Hambley
Eric,
It may be prudent to reinstall those gems? I can think of a few other
things
Post by Lee Hambley
that might manifest that way, but first things first!
- Lee
Post by ericindc
I've been uninstall, reinstalling, etc. to try and get Capistrano
working. Just trying to do a simple cap --version produces the
following error message. It seems like it's just thinking the net-ssh-
gateway gem isn't installed.
cap --version
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
`gem_original_require': no such file to load -- net/ssh/gateway
(LoadError)
from
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration/connections.rb:2
from
31:in `gem_original_require'
from
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration.rb:4
from
31:in `gem_original_require'
from
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano.rb:1
from
31:in `gem_original_require'
from
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/cli.rb:1
from
31:in `gem_original_require'
from
31:in `require'
from
/usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/bin/cap:3
Post by Lee Hambley
Post by ericindc
from /usr/local/bin/cap:19:in `load'
from /usr/local/bin/cap:19
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
gem list --local | grep -i net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Capistrano" group.
To post to this group, send email to capistrano-/***@public.gmane.org
To unsubscribe from this group, send email to capistrano+unsubscribe-/***@public.gmane.org
For more options, visit this group at http://groups.google.co.uk/group/capistrano?hl=en
-~----------~----~----~----~------~----~------~--~---
ericindc
2009-07-02 19:39:39 UTC
Permalink
Mac OS X

which gem
/usr/local/bin/gem

gem -v
1.3.1

which ruby
/usr/local/bin/ruby

ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-darwin9.7.1]

There is also the default install that comes with OS X that is in /usr/
bin
Post by Lee Hambley
What version of rubygems are you using, and what O/S ?... are you using
vendor ruby, or a specially installed one ?
- Lee
Post by ericindc
Something seems a little weird...
gem list --local | grep net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
sudo gem uninstall -a net-ssh net-sftp net-scp net-ssh-gateway
highline echoe
ERROR:  While executing gem ... (Gem::InstallError)
   Unknown gem net-ssh >= 0
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
ls /usr/local/lib/ruby/gems/1.8/gems | grep -i net (returns nothing)
ls /Users/Eric/.gem/ruby/1.8 | grep -i net (returns nothing
After all that, I tried sudo gem install capistrano and it only tried
to install the capistrano gem, seemingly not it's dependencies.  It
did this the last time as well and I had to install the dependencies
individually.
Post by Lee Hambley
Eric,
It may be prudent to reinstall those gems? I can think of a few other
things
Post by Lee Hambley
that might manifest that way, but first things first!
- Lee
Post by ericindc
I've been uninstall, reinstalling, etc. to try and get Capistrano
working.  Just trying to do a simple cap --version produces the
following error message.  It seems like it's just thinking the net-ssh-
gateway gem isn't installed.
 cap --version
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
`gem_original_require': no such file to load -- net/ssh/gateway
(LoadError)
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration/connections.rb:2
       from
31:in `gem_original_require'
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration.rb:4
       from
31:in `gem_original_require'
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano.rb:1
       from
31:in `gem_original_require'
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/cli.rb:1
       from
31:in `gem_original_require'
       from
31:in `require'
       from
/usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/bin/cap:3
Post by Lee Hambley
Post by ericindc
       from /usr/local/bin/cap:19:in `load'
       from /usr/local/bin/cap:19
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
gem list --local | grep -i net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
Lee Hambley
2009-07-02 19:42:32 UTC
Permalink
Thanks Eric, not sure whats going on there, you may have to try and clean
your installed gems cache, this happens from time to time, maybe the
RubyGems guys know better?
- Lee
Post by ericindc
Mac OS X
which gem
/usr/local/bin/gem
gem -v
1.3.1
which ruby
/usr/local/bin/ruby
ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-darwin9.7.1]
There is also the default install that comes with OS X that is in /usr/
bin
Post by Lee Hambley
What version of rubygems are you using, and what O/S ?... are you using
vendor ruby, or a specially installed one ?
- Lee
Post by ericindc
Something seems a little weird...
gem list --local | grep net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
sudo gem uninstall -a net-ssh net-sftp net-scp net-ssh-gateway
highline echoe
ERROR: While executing gem ... (Gem::InstallError)
Unknown gem net-ssh >= 0
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
ls /usr/local/lib/ruby/gems/1.8/gems | grep -i net (returns nothing)
ls /Users/Eric/.gem/ruby/1.8 | grep -i net (returns nothing
After all that, I tried sudo gem install capistrano and it only tried
to install the capistrano gem, seemingly not it's dependencies. It
did this the last time as well and I had to install the dependencies
individually.
Post by Lee Hambley
Eric,
It may be prudent to reinstall those gems? I can think of a few other
things
Post by Lee Hambley
that might manifest that way, but first things first!
- Lee
Post by ericindc
I've been uninstall, reinstalling, etc. to try and get Capistrano
working. Just trying to do a simple cap --version produces the
following error message. It seems like it's just thinking the
net-ssh-
Post by Lee Hambley
Post by ericindc
Post by Lee Hambley
Post by ericindc
gateway gem isn't installed.
cap --version
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
`gem_original_require': no such file to load -- net/ssh/gateway
(LoadError)
from
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration/connections.rb:2
from
31:in `gem_original_require'
from
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration.rb:4
from
31:in `gem_original_require'
from
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano.rb:1
from
31:in `gem_original_require'
from
31:in `require'
from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/cli.rb:1
from
31:in `gem_original_require'
from
31:in `require'
from
/usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/bin/cap:3
Post by Lee Hambley
Post by ericindc
from /usr/local/bin/cap:19:in `load'
from /usr/local/bin/cap:19
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
gem list --local | grep -i net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Capistrano" group.
To post to this group, send email to capistrano-/***@public.gmane.org
To unsubscribe from this group, send email to capistrano+unsubscribe-/***@public.gmane.org
For more options, visit this group at http://groups.google.co.uk/group/capistrano?hl=en
-~----------~----~----~----~------~----~------~--~---
Christian Eager
2009-07-02 19:42:30 UTC
Permalink
Hi Eric,

This thread might be helpful for helping you figure out your gem-weirdness:

http://groups.google.com/group/capistrano/browse_thread/thread/e4e48142fae7aa2c/9cde69e6aa22ae7f
Post by ericindc
Mac OS X
which gem
/usr/local/bin/gem
gem -v
1.3.1
which ruby
/usr/local/bin/ruby
ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-darwin9.7.1]
There is also the default install that comes with OS X that is in /usr/
bin
Post by Lee Hambley
What version of rubygems are you using, and what O/S ?... are you using
vendor ruby, or a specially installed one ?
- Lee
Post by ericindc
Something seems a little weird...
gem list --local | grep net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
sudo gem uninstall -a net-ssh net-sftp net-scp net-ssh-gateway
highline echoe
ERROR:  While executing gem ... (Gem::InstallError)
   Unknown gem net-ssh >= 0
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
ls /usr/local/lib/ruby/gems/1.8/gems | grep -i net (returns nothing)
ls /Users/Eric/.gem/ruby/1.8 | grep -i net (returns nothing
After all that, I tried sudo gem install capistrano and it only tried
to install the capistrano gem, seemingly not it's dependencies.  It
did this the last time as well and I had to install the dependencies
individually.
Post by Lee Hambley
Eric,
It may be prudent to reinstall those gems? I can think of a few other
things
Post by Lee Hambley
that might manifest that way, but first things first!
- Lee
Post by ericindc
I've been uninstall, reinstalling, etc. to try and get Capistrano
working.  Just trying to do a simple cap --version produces the
following error message.  It seems like it's just thinking the net-ssh-
gateway gem isn't installed.
 cap --version
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
`gem_original_require': no such file to load -- net/ssh/gateway
(LoadError)
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration/connections.rb:2
       from
31:in `gem_original_require'
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration.rb:4
       from
31:in `gem_original_require'
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano.rb:1
       from
31:in `gem_original_require'
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/cli.rb:1
       from
31:in `gem_original_require'
       from
31:in `require'
       from
/usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/bin/cap:3
Post by Lee Hambley
Post by ericindc
       from /usr/local/bin/cap:19:in `load'
       from /usr/local/bin/cap:19
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
gem list --local | grep -i net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
ericindc
2009-07-02 19:54:02 UTC
Permalink
Awesome...that worked! Thanks!
Post by Christian Eager
Hi Eric,
http://groups.google.com/group/capistrano/browse_thread/thread/e4e481...
Post by ericindc
Mac OS X
which gem
/usr/local/bin/gem
gem -v
1.3.1
which ruby
/usr/local/bin/ruby
ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-darwin9.7.1]
There is also the default install that comes with OS X that is in /usr/
bin
Post by Lee Hambley
What version of rubygems are you using, and what O/S ?... are you using
vendor ruby, or a specially installed one ?
- Lee
Post by ericindc
Something seems a little weird...
gem list --local | grep net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
sudo gem uninstall -a net-ssh net-sftp net-scp net-ssh-gateway
highline echoe
ERROR:  While executing gem ... (Gem::InstallError)
   Unknown gem net-ssh >= 0
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
ls /usr/local/lib/ruby/gems/1.8/gems | grep -i net (returns nothing)
ls /Users/Eric/.gem/ruby/1.8 | grep -i net (returns nothing
After all that, I tried sudo gem install capistrano and it only tried
to install the capistrano gem, seemingly not it's dependencies.  It
did this the last time as well and I had to install the dependencies
individually.
Post by Lee Hambley
Eric,
It may be prudent to reinstall those gems? I can think of a few other
things
Post by Lee Hambley
that might manifest that way, but first things first!
- Lee
Post by ericindc
I've been uninstall, reinstalling, etc. to try and get Capistrano
working.  Just trying to do a simple cap --version produces the
following error message.  It seems like it's just thinking the net-ssh-
gateway gem isn't installed.
 cap --version
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
`gem_original_require': no such file to load -- net/ssh/gateway
(LoadError)
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration/connections.rb:2
       from
31:in `gem_original_require'
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/configuration.rb:4
       from
31:in `gem_original_require'
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano.rb:1
       from
31:in `gem_original_require'
       from
31:in `require'
       from /usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/lib/
capistrano/cli.rb:1
       from
31:in `gem_original_require'
       from
31:in `require'
       from
/usr/local/lib/ruby/gems/1.8/gems/capistrano-2.5.5/bin/cap:3
Post by Lee Hambley
Post by ericindc
       from /usr/local/bin/cap:19:in `load'
       from /usr/local/bin/cap:19
ruby -r rubygems -e "p Gem.path"
["/Users/Eric/.gem/ruby/1.8", "/usr/local/lib/ruby/gems/1.8"]
gem list --local | grep -i net
net-scp (1.0.2)
net-sftp (2.0.2)
net-ssh (2.0.11)
net-ssh-gateway (1.0.1)
Loading...