summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-12-30 12:05:38 -0800
committerTim Smith <tsmith84@gmail.com>2020-12-30 12:05:38 -0800
commita9ceaf8d3055cedd1b0f5ae25e3d04b0a37ebfe9 (patch)
treec80fc7274a1e258c3f92e350baa69337aaa0763f
parent5be346c85f30e12efb37c5cc5910f50084c5071b (diff)
downloadmixlib-config-a9ceaf8d3055cedd1b0f5ae25e3d04b0a37ebfe9.tar.gz
Fix gem installs on Ruby < 2.6
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index f52ba7d..c484358 100644
--- a/Gemfile
+++ b/Gemfile
@@ -17,6 +17,6 @@ end
group :debug do
gem "pry"
gem "pry-byebug"
- gem "pry-stack_explorer"
+ gem "pry-stack_explorer", "~> 0.4.0" # supports Ruby < 2.6
gem "rb-readline"
end