summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2021-03-18 10:26:11 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2021-03-18 10:35:51 -0700
commit2d88d96b2cfeabd9eaa5350a1f8b90e54632923c (patch)
tree5c86b235c9a011fdb5993f34ca91df3fedddea04 /Gemfile
parent12265fccc388abe416d89e1f06df546d6b024747 (diff)
downloadchef-2d88d96b2cfeabd9eaa5350a1f8b90e54632923c.tar.gz
ruby 3.0 fixes and post-bundle-install hook
Mostly this is all fixes necessary for ruby 3.0 There's the addition of the appbundle hook which lets us better pull git gems into appbundler Note carefully how after adding the post-bundle-install.rb that trying to pre appbundle-update ohai pulls in chef/chef as bundle installed git gem which fails to install so we go back to only using one appbundle-update on chef/chef and removing the chef/ohai one (which may fix other bugs). Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Gemfile b/Gemfile
index 99e7cf3c6b..3369222d57 100644
--- a/Gemfile
+++ b/Gemfile
@@ -39,13 +39,13 @@ end
# Everything except AIX
group(:ruby_prof) do
- # ruby-prof 1.3.0 does not compile on our centos6 builders/kitchen testers
- gem "ruby-prof", "< 1.3.0"
+ gem "ruby-prof"
end
# Everything except AIX and Windows
group(:ruby_shadow) do
- gem "ruby-shadow", platforms: :ruby
+ # if ruby-shadow does a release that supports ruby-3.0 this can be removed
+ gem "ruby-shadow", git: "https://github.com/chef/ruby-shadow", branch: "lcg/ruby-3.0", platforms: :ruby
end
group(:development, :test) do