Skip to content

Commit

Permalink
Alternatives
Browse files Browse the repository at this point in the history
  • Loading branch information
deivid-rodriguez committed Feb 6, 2024
1 parent 5c7a3bc commit 859b8f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Rakefile
Expand Up @@ -538,7 +538,9 @@ namespace :spec do

desc "Ensure spec dependencies for running in parallel are installed"
task parallel_deps: "dev:deps" do
Spec::Rubygems.install_parallel_test_deps
chdir("bundler") do
Spec::Rubygems.install_parallel_test_deps
end
end

desc "Run all specs"
Expand Down
2 changes: 1 addition & 1 deletion bundler/bundler.gemspec
Expand Up @@ -34,7 +34,7 @@ Gem::Specification.new do |s|
# It should match the RubyGems version shipped with `required_ruby_version` above
s.required_rubygems_version = ">= 3.2.3"

s.files = Dir.glob("lib/bundler{.rb,/**/*}", File::FNM_DOTMATCH, base: __dir__).reject {|f| File.directory?(File.expand_path(f, __dir__)) }
s.files = Dir.glob("lib/bundler{.rb,/**/*}", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }

# include the gemspec itself because warbler breaks w/o it
s.files += %w[bundler.gemspec]
Expand Down

0 comments on commit 859b8f4

Please sign in to comment.