diff options
author | abcang <abcang1015@gmail.com> | 2018-10-01 21:06:40 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-10-01 14:06:40 +0200 |
commit | ac15c26c293e5bd79300ec7ace7b93d8812ff412 (patch) | |
tree | 8ffc43e859b07e2e9873db0a904938d278057f9b | |
parent | 5d5d1b528eda560191b2813714c9e461fda3c9d8 (diff) |
Fix requirie bootsnap (#8836)
-rw-r--r-- | config/boot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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', |