Feature #44426 » 0002-Use-bootsnap-to-speed-up-the-boot.patch
| Gemfile | ||
|---|---|---|
| 3 | 3 |
ruby '>= 3.3.0', '< 4.1.0' |
| 4 | 4 |
gem 'rails', '8.1.3.1' |
| 5 |
# Reduces boot times through caching; required in config/boot.rb |
|
| 6 |
gem 'bootsnap', require: false |
|
| 5 | 7 |
gem 'rouge', '~> 5.0' |
| 6 | 8 |
gem "actionpack-xml_parser" |
| 7 | 9 |
gem 'roadie-rails', '~> 3.4.0' |
| config/boot.rb | ||
|---|---|---|
| 19 | 19 |
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
|
| 20 | 20 |
require 'bundler/setup' # Set up gems listed in the Gemfile. |
| 21 |
require 'bootsnap/setup' # Speed up boot time by caching expensive operations. |
|