summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-08-21 11:16:30 -0700
committerTim Smith <tsmith84@gmail.com>2020-08-21 11:20:46 -0700
commite825ec79ae03f5877d9a2dcbf72ab92c28cf6d76 (patch)
treeab32bd30a63e23c32671ca34351e11981aaa2729
parent91e24db8ad73ab332c6491ae314c70f181d3dbf1 (diff)
downloadmixlib-log-e825ec79ae03f5877d9a2dcbf72ab92c28cf6d76.tar.gz
Fix test failures
Signed-off-by: Tim Smith <tsmith@chef.io>
-rwxr-xr-xGemfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 190313e..259b272 100755
--- a/Gemfile
+++ b/Gemfile
@@ -1,3 +1,4 @@
+
source "https://rubygems.org"
gemspec
@@ -10,7 +11,8 @@ end
group :test do
gem "chefstyle"
- gem "cucumber"
+ gem "cucumber", "< 5" # remove the version pin when we drop Ruby 2.4 support
+ gem "activesupport", "< 6" # this dep can be removed when we drop Ruby 2.4 support
gem "rake"
gem "rspec", "~> 3.7"
end
@@ -18,6 +20,6 @@ end
group :debug do
gem "pry"
gem "pry-byebug"
- gem "pry-stack_explorer"
+ gem "pry-stack_explorer", "~> 0.4.0" # pin until we drop ruby < 2.6
gem "rb-readline"
end