From d1b13e7c3579d59e5e4ca3c1459a03e4756166ca Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Tue, 20 Nov 2018 19:56:02 -0600 Subject: [PATCH] Remove bootsnap It was causing weird hangs while booting the app. --- Gemfile | 1 - config/boot.rb | 1 - 2 files changed, 2 deletions(-) diff --git a/Gemfile b/Gemfile index 19ad205f..ead1e3eb 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,6 @@ source 'https://rubygems.org' gem 'rails', '~> 5.2.1' gem 'sass-rails', '~> 5.0' gem 'coffee-rails', '~> 4.2.0' -gem 'bootsnap', '~> 1.1' #gem 'json' diff --git a/config/boot.rb b/config/boot.rb index b9e460ce..30f5120d 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -1,4 +1,3 @@ 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.