summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-12-16 14:41:43 +0800
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-12-16 14:41:43 +0800
commitdd49ee152ba4153f5c4cf44896975cf1e0ee739e (patch)
treea749ff8a776f32a0a544c166850a89cf23f7d1fa /tool
parentf535f53cd6c190e9d362c2d8d3eb73fab700d761 (diff)
Use minimum arguments for Bootsnap
Diffstat (limited to 'tool')
-rw-r--r--tool/test_for_warn_bundled_gems/test_no_warn_bootsnap.rb11
1 files changed, 1 insertions, 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'