File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,8 @@ gem "jwt"
100100gem "newrelic_rpm"
101101# Used to manage periodic cron-like jobs
102102gem "clockwork"
103+ # Speed up app boot time by caching expensive operations
104+ gem 'bootsnap' , require : false
103105
104106##### DEPENDENCY PINS ######
105107# These are gems that aren't used directly, only as dependencies for other gems.
Original file line number Diff line number Diff line change 111111 bindex (0.8.1 )
112112 binding_of_caller (1.0.1 )
113113 debug_inspector (>= 1.2.0 )
114+ bootsnap (1.18.4 )
115+ msgpack (~> 1.2 )
114116 bootstrap (5.2.3 )
115117 autoprefixer-rails (>= 9.1.0 )
116118 popper_js (>= 2.11.6 , < 3 )
383385 monetize (~> 1.9 )
384386 money (~> 6.13 )
385387 railties (>= 3.0 )
388+ msgpack (1.7.5 )
386389 multi_xml (0.7.1 )
387390 bigdecimal (~> 3.1 )
388391 multipart-post (2.4.1 )
@@ -717,6 +720,7 @@ DEPENDENCIES
717720 azure-storage-blob
718721 better_errors
719722 binding_of_caller
723+ bootsnap
720724 bootstrap (~> 5.2 )
721725 brakeman
722726 bugsnag
Original file line number Diff line number Diff line change 11ENV [ "BUNDLE_GEMFILE" ] ||= File . expand_path ( "../Gemfile" , __dir__ )
22
33require "bundler/setup" # Set up gems listed in the Gemfile.
4- # require ' bootsnap/setup' # Speed up boot time by caching expensive operations.
4+ require " bootsnap/setup" # Speed up boot time by caching expensive operations.
You can’t perform that action at this time.
0 commit comments