From a67f3e466bf3382774f0b0e3145d657dc23a1ef8 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Sat, 12 Feb 2022 14:41:47 -0600 Subject: [PATCH] Remove bootsnap --- Gemfile | 3 --- Gemfile.lock | 4 ---- config/boot.rb | 1 - 3 files changed, 8 deletions(-) diff --git a/Gemfile b/Gemfile index b47ba56..a7e72ba 100644 --- a/Gemfile +++ b/Gemfile @@ -22,9 +22,6 @@ gem 'jbuilder', '~> 2.7' # Use Active Model has_secure_password # gem 'bcrypt', '~> 3.1.7' -# Reduces boot times through caching; required in config/boot.rb -gem "bootsnap", require: false - # Configuration gem 'dotenv-rails' diff --git a/Gemfile.lock b/Gemfile.lock index b432b8e..bbdc6e7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -70,8 +70,6 @@ GEM public_suffix (>= 2.0.2, < 5.0) bcrypt (3.1.16) bindex (0.8.1) - bootsnap (1.10.3) - msgpack (~> 1.2) builder (3.2.4) capybara (3.36.0) addressable @@ -163,7 +161,6 @@ GEM method_source (1.0.0) mini_mime (1.1.2) minitest (5.15.0) - msgpack (1.4.4) net-imap (0.2.3) digest net-protocol @@ -307,7 +304,6 @@ PLATFORMS x86_64-linux DEPENDENCIES - bootsnap capybara cssbundling-rails database_cleaner diff --git a/config/boot.rb b/config/boot.rb index 988a5dd..2820116 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.