From dd49ee152ba4153f5c4cf44896975cf1e0ee739e Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Sat, 16 Dec 2023 14:41:43 +0800 Subject: [PATCH] Use minimum arguments for Bootsnap --- .../test_no_warn_bootsnap.rb | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/tool/test_for_warn_bundled_gems/test_no_warn_bootsnap.rb b/tool/test_for_warn_bundled_gems/test_no_warn_bootsnap.rb index 044e8cc9d3..eac58de974 100644 --- a/tool/test_for_warn_bundled_gems/test_no_warn_bootsnap.rb +++ b/tool/test_for_warn_bundled_gems/test_no_warn_bootsnap.rb @@ -6,15 +6,6 @@ gemfile do end require 'bootsnap' -Bootsnap.setup( - cache_dir: 'tmp/cache', - ignore_directories: ['node_modules'], - development_mode: true, - load_path_cache: true, - compile_cache_iseq: true, - compile_cache_yaml: true, - compile_cache_json: true, - readonly: true, -) +Bootsnap.setup(cache_dir: 'tmp/cache') require 'csv'