From 942ec7ab338c783c95dc119b9161466f1dbb82b3 Mon Sep 17 00:00:00 2001 From: Orien Madgwick <497874+orien@users.noreply.github.com> Date: Wed, 13 Nov 2024 15:20:46 +1100 Subject: [PATCH] [ruby/uri] Remove rakelib/ dir from gem also https://github.com/ruby/uri/commit/a0dd612e90 --- lib/uri/uri.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uri/uri.gemspec b/lib/uri/uri.gemspec index 9c4d43ed9a..0d0f897cba 100644 --- a/lib/uri/uri.gemspec +++ b/lib/uri/uri.gemspec @@ -33,7 +33,7 @@ Gem::Specification.new do |spec| gemspec = File.basename(__FILE__) spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z 2>#{IO::NULL}`.split("\x0").reject do |file| - (file == gemspec) || file.start_with?(*%w[bin/ test/ .github/ .gitignore Gemfile Rakefile]) + (file == gemspec) || file.start_with?(*%w[bin/ test/ rakelib/ .github/ .gitignore Gemfile Rakefile]) end end spec.bindir = "exe"