File tree Expand file tree Collapse file tree 1 file changed +36
-2
lines changed
Expand file tree Collapse file tree 1 file changed +36
-2
lines changed Original file line number Diff line number Diff line change 2727 run : |
2828 ruby -e '
2929 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] }
30+ # bundled_gems = Dir.glob("D:/ruby-${{ matrix.ruby }}/lib/ruby/gems/*/cache/*.gem")
31+ # .map { |path| File.basename(path, ".gem")[/^(.+)-[^-]+$/, 1] }
32+ bundled_gems = %w[
33+ abbrev
34+ base64
35+ bigdecimal
36+ csv
37+ debug
38+ did_you_mean
39+ drb
40+ getoptlong
41+ matrix
42+ minitest
43+ mutex_m
44+ net-ftp
45+ net-imap
46+ net-pop
47+ net-smtp
48+ net-telnet
49+ nkf
50+ observer
51+ prime
52+ power_assert
53+ racc
54+ rake
55+ rbs
56+ repl_type_completor
57+ resolv-replace
58+ rexml
59+ rinda
60+ rss
61+ test-unit
62+ syslog
63+ typeprof
64+ xmlrpc
65+ ]
3266 bundled_gems.each do |gem|
3367 system "gem uninstall #{gem}", exception: true
3468 end
You can’t perform that action at this time.
0 commit comments