mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 12:29:54 +01:00
Add Bootsnap
This commit is contained in:
parent
b5bf326cc0
commit
8aee2533a0
3 changed files with 8 additions and 2 deletions
1
Gemfile
1
Gemfile
|
@ -15,6 +15,7 @@ gem "turbolinks", "~> 2.5.3"
|
||||||
gem "bcrypt", "~> 3.1.18"
|
gem "bcrypt", "~> 3.1.18"
|
||||||
|
|
||||||
gem "active_model_otp"
|
gem "active_model_otp"
|
||||||
|
gem "bootsnap", require: false
|
||||||
gem "bootstrap_form"
|
gem "bootstrap_form"
|
||||||
gem "carrierwave", "~> 2.0"
|
gem "carrierwave", "~> 2.0"
|
||||||
gem "carrierwave_backgrounder", git: "https://github.com/mltnhm/carrierwave_backgrounder.git"
|
gem "carrierwave_backgrounder", git: "https://github.com/mltnhm/carrierwave_backgrounder.git"
|
||||||
|
|
|
@ -86,6 +86,8 @@ GEM
|
||||||
bindex (0.8.1)
|
bindex (0.8.1)
|
||||||
binding_of_caller (1.0.0)
|
binding_of_caller (1.0.0)
|
||||||
debug_inspector (>= 0.0.1)
|
debug_inspector (>= 0.0.1)
|
||||||
|
bootsnap (1.12.0)
|
||||||
|
msgpack (~> 1.2)
|
||||||
bootstrap_form (5.1.0)
|
bootstrap_form (5.1.0)
|
||||||
actionpack (>= 5.2)
|
actionpack (>= 5.2)
|
||||||
activemodel (>= 5.2)
|
activemodel (>= 5.2)
|
||||||
|
@ -303,6 +305,7 @@ GEM
|
||||||
mini_mime (1.1.2)
|
mini_mime (1.1.2)
|
||||||
mini_portile2 (2.8.0)
|
mini_portile2 (2.8.0)
|
||||||
minitest (5.16.2)
|
minitest (5.16.2)
|
||||||
|
msgpack (1.5.3)
|
||||||
multi_json (1.15.0)
|
multi_json (1.15.0)
|
||||||
multi_xml (0.6.0)
|
multi_xml (0.6.0)
|
||||||
multipart-post (2.1.1)
|
multipart-post (2.1.1)
|
||||||
|
@ -570,6 +573,7 @@ DEPENDENCIES
|
||||||
bcrypt (~> 3.1.18)
|
bcrypt (~> 3.1.18)
|
||||||
better_errors
|
better_errors
|
||||||
binding_of_caller
|
binding_of_caller
|
||||||
|
bootsnap
|
||||||
bootstrap_form
|
bootstrap_form
|
||||||
brakeman
|
brakeman
|
||||||
bullet
|
bullet
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue