Add Bootsnap

This commit is contained in:
Karina Kwiatek 2022-07-19 12:24:52 +02:00 committed by Karina Kwiatek
parent b5bf326cc0
commit 8aee2533a0
3 changed files with 8 additions and 2 deletions

View File

@ -15,6 +15,7 @@ gem "turbolinks", "~> 2.5.3"
gem "bcrypt", "~> 3.1.18"
gem "active_model_otp"
gem "bootsnap", require: false
gem "bootstrap_form"
gem "carrierwave", "~> 2.0"
gem "carrierwave_backgrounder", git: "https://github.com/mltnhm/carrierwave_backgrounder.git"

View File

@ -86,6 +86,8 @@ GEM
bindex (0.8.1)
binding_of_caller (1.0.0)
debug_inspector (>= 0.0.1)
bootsnap (1.12.0)
msgpack (~> 1.2)
bootstrap_form (5.1.0)
actionpack (>= 5.2)
activemodel (>= 5.2)
@ -303,6 +305,7 @@ GEM
mini_mime (1.1.2)
mini_portile2 (2.8.0)
minitest (5.16.2)
msgpack (1.5.3)
multi_json (1.15.0)
multi_xml (0.6.0)
multipart-post (2.1.1)
@ -570,6 +573,7 @@ DEPENDENCIES
bcrypt (~> 3.1.18)
better_errors
binding_of_caller
bootsnap
bootstrap_form
brakeman
bullet

View File

@ -1,3 +1,4 @@
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
require 'bundler/setup' # Set up gems listed in the Gemfile.
require "bundler/setup" # Set up gems listed in the Gemfile.
require "bootsnap/setup"