summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklós Fazekas <mfazekas@szemafor.com>2016-08-08 12:03:57 +0200
committerGitHub <noreply@github.com>2016-08-08 12:03:57 +0200
commit87bcc22315c20e48dc0c0401e95a8681715efaf5 (patch)
treea2d29d214934d1823806061fdc54ec0b3a97d2c5
parent4a2ec61955b06377b4cc1c78ebfa62f3067d2145 (diff)
parent8a040416158d2c2d79a80e21d7c7d826c982f6e3 (diff)
downloadnet-ssh-87bcc22315c20e48dc0c0401e95a8681715efaf5.tar.gz
Merge pull request #418 from mfazekas/beta2-preparev4.0.0.beta2
Fixed raiseUnlessLoaded undefined ERROR issue
-rw-r--r--CHANGES.txt6
-rw-r--r--lib/net/ssh/authentication/ed25519_loader.rb2
-rw-r--r--lib/net/ssh/version.rb2
3 files changed, 7 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index e23f746..0d33964 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,8 @@
-=== 4.0.0.beta
+=== 4.0.0.beta2
+
+ * Fix raiseUnlessLoaded undefined ERROR issue [Miklos Fazekas, #418]
+
+=== 4.0.0.beta1
* Fix pageant [elconas, #235]
* Relaxed rbnacl,rbnacl-selenium contstraints ang give better errors about them [Miklos Fazekas, #398]
diff --git a/lib/net/ssh/authentication/ed25519_loader.rb b/lib/net/ssh/authentication/ed25519_loader.rb
index 5699d28..e71db4b 100644
--- a/lib/net/ssh/authentication/ed25519_loader.rb
+++ b/lib/net/ssh/authentication/ed25519_loader.rb
@@ -14,7 +14,7 @@ rescue LoadError => e
end
def self.raiseUnlessLoaded(message)
- raise NotImplementedError, "#{message} -- see #{ED25519_LOAD_ERROR}" unless LOADED
+ raise NotImplementedError, "#{message} -- see #{ERROR}" unless LOADED
end
end
diff --git a/lib/net/ssh/version.rb b/lib/net/ssh/version.rb
index 3ed4d61..661ac4d 100644
--- a/lib/net/ssh/version.rb
+++ b/lib/net/ssh/version.rb
@@ -55,7 +55,7 @@ module Net; module SSH
# The prerelease component of this version of the Net::SSH library
# nil allowed
- PRE = "beta1"
+ PRE = "beta2"
# The current version of the Net::SSH library as a Version instance
CURRENT = new(*[MAJOR, MINOR, TINY, PRE].compact)