From 04c68ada154e214253418a251d0fa27a18b9411a Mon Sep 17 00:00:00 2001 From: "Curt J. Sampson" Date: Fri, 25 Nov 2016 20:47:50 +0900 Subject: [PATCH] Gemfile: net-ssh =, not >= 3.2.0 because > versions may be different As mentioned in the warning at the top of `Test.rb` we ended up getting a little deeper into the internals of Net::SSH than I'm totally comfortable with, so let's just lock the Gem version to 3.2.0 until we can try out other versions. The particular worry here is that someone's got 4.x installed and that would satisfy the >= 3.2.0 constraint. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 89e4a2b..1d5f557 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,3 @@ source 'https://rubygems.org' -gem 'net-ssh', '>= 3.2.0' +gem 'net-ssh', '= 3.2.0'