summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave <dave.sieh@providigm.com>2013-09-23 15:20:19 -0600
committerDave <dave.sieh@providigm.com>2013-09-23 15:20:19 -0600
commit125191a600cc1e49e2e56e985362a2d583a71b0e (patch)
tree7ebc00bd475adbcd0eb4ef2af1543309c27e4e8e
parente3c3b6542580f15fb1a0a6ffad5383f2373ab43a (diff)
downloadnet-ssh-125191a600cc1e49e2e56e985362a2d583a71b0e.tar.gz
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.
-rw-r--r--lib/net/ssh/authentication/session.rb1
1 files changed, 1 insertions, 0 deletions
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'