From 125191a600cc1e49e2e56e985362a2d583a71b0e Mon Sep 17 00:00:00 2001 From: Dave Date: Mon, 23 Sep 2013 15:20:19 -0600 Subject: Fix for "Authentication Method determination can pick up a class from the root namespace". Added a require for the 'none' authentication method in session.rb. --- lib/net/ssh/authentication/session.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/net/ssh/authentication/session.rb b/lib/net/ssh/authentication/session.rb index 96c63c5..b8650d5 100644 --- a/lib/net/ssh/authentication/session.rb +++ b/lib/net/ssh/authentication/session.rb @@ -2,6 +2,7 @@ require 'net/ssh/loggable' require 'net/ssh/transport/constants' require 'net/ssh/authentication/constants' require 'net/ssh/authentication/key_manager' +require 'net/ssh/authentication/methods/none' require 'net/ssh/authentication/methods/publickey' require 'net/ssh/authentication/methods/hostbased' require 'net/ssh/authentication/methods/password' -- cgit v1.2.1