From 8471a6788dda8537c9e0e5139a8f036182be4c5b Mon Sep 17 00:00:00 2001 From: Anson Hoyt Date: Fri, 18 Nov 2022 10:33:14 -0500 Subject: [PATCH] Update README.md Fix missing `:` and misspelt argument. Makes this example work. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 840e2d1..04ce397 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ require 'bootsnap' env = ENV['RAILS_ENV'] || "development" Bootsnap.setup( cache_dir: 'tmp/cache', # Path to your cache - ignored_directories ['node_modules'], # Directory names to skip. + ignore_directories: ['node_modules'], # Directory names to skip. development_mode: env == 'development', # Current working environment, e.g. RACK_ENV, RAILS_ENV, etc load_path_cache: true, # Optimize the LOAD_PATH with a cache compile_cache_iseq: true, # Compile Ruby code into ISeq cache, breaks coverage reporting.