From ac15c26c293e5bd79300ec7ace7b93d8812ff412 Mon Sep 17 00:00:00 2001 From: abcang Date: Mon, 1 Oct 2018 21:06:40 +0900 Subject: [PATCH] Fix requirie bootsnap (#8836) --- config/boot.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/boot.rb b/config/boot.rb index f82b2be0a..593f575e9 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -1,7 +1,7 @@ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) require 'bundler/setup' # Set up gems listed in the Gemfile. -require 'bootsnap/setup' # Speed up boot time by caching expensive operations. +require 'bootsnap' # Speed up boot time by caching expensive operations. Bootsnap.setup( cache_dir: 'tmp/cache',