We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 32f933e + fec0a3f commit 831a7dbCopy full SHA for 831a7db
.github/workflows/windows.yml
@@ -27,8 +27,12 @@ jobs:
27
run: |
28
ruby -e '
29
exit if "${{ matrix.ruby }}" != "ucrt" && "${{ matrix.ruby }}" != "mswin"
30
- bundled_gems = Dir.glob("D:/ruby-${{ matrix.ruby }}/lib/ruby/gems/*/cache/*.gem")
31
- .map { |path| File.basename(path, ".gem")[/^(.+)-[^-]+$/, 1] }
+
+ require "open-uri"
32
+ require "json"
33
34
+ res = URI.parse("https://stdgems.org/bundled_gems.json").read
35
+ bundled_gems = JSON.parse(res)["gems"].map{_1["gem"]}
36
system "gem uninstall #{bundled_gems.join(" ")}", exception: true
37
'
38
- name: bundle install
0 commit comments