diff options
author | John McCrae <john.mccrae@progress.com> | 2022-03-24 09:43:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-24 09:43:23 -0700 |
commit | 90e15c54cea6e2527114fa3d139b3111f90ead48 (patch) | |
tree | 6b3031bf111050b42c27d87f663259168569f5af /knife | |
parent | 5c475240f9fb93d70fbc27803c845cb43d223105 (diff) | |
parent | ae7d0cc07b2cc746bac36b822d0e1a212f54c1a7 (diff) | |
download | chef-90e15c54cea6e2527114fa3d139b3111f90ead48.tar.gz |
Merge pull request #12695 from chef/lcg/verify-pipeline-ruby-31
The Windows integration test failures were an affect of a busted script, now corrected.
Diffstat (limited to 'knife')
-rw-r--r-- | knife/Gemfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/knife/Gemfile b/knife/Gemfile index a2321726c7..ed6bf36acb 100644 --- a/knife/Gemfile +++ b/knife/Gemfile @@ -2,6 +2,9 @@ source "https://rubygems.org" gem "knife", path: "." +# proxifier gem is busted on ruby 3.1 and seems abandoned so use git fork of gem +gem "proxifier", git: "https://github.com/chef/ruby-proxifier", branch: "lcg/ruby-3" + group(:development, :test) do gem "cheffish", ">= 14" # testing only , but why didn't this need to explicit in chef? gem "webmock" # testing only |