diff options
author | Tim Smith <tsmith@chef.io> | 2019-02-28 10:39:31 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2019-02-28 10:39:31 -0800 |
commit | ef02957edd5fb851356a30a69bcc049e80ff3277 (patch) | |
tree | 2381f1a616ad195b9fc2cfc5ef7169fb6c6605cf /omnibus/Gemfile | |
parent | 2a0e15a83224771d5ab15a43b77a961d767420ef (diff) | |
download | chef-ef02957edd5fb851356a30a69bcc049e80ff3277.tar.gz |
Update omnibus gemfile deps to remove pryomnis
Allow for test-kitchen 2 and remove pry which we don't need here and can be easily added with a local gemfile if need be later.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'omnibus/Gemfile')
-rw-r--r-- | omnibus/Gemfile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/omnibus/Gemfile b/omnibus/Gemfile index a1cd1bbe48..c02cb35c92 100644 --- a/omnibus/Gemfile +++ b/omnibus/Gemfile @@ -17,10 +17,7 @@ group :development do gem "ohai", "~> 14.0" # Use Test Kitchen with Vagrant for converging the build environment - gem "test-kitchen", "~> 1.21" - gem "kitchen-vagrant", "~> 1.3.1" + gem "test-kitchen", ">= 1.23" + gem "kitchen-vagrant", ">= 1.3.1" gem "winrm-fs", "~> 1.0" - gem "pry" - gem "pry-byebug" - gem "pry-stack_explorer" end |