]> cat aescling's git repositories - mastodon.git/blob - config/boot.rb
Fix vote checkmark in poll results (#11990)
[mastodon.git] / config / boot.rb
1 ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
2
3 require 'bundler/setup' # Set up gems listed in the Gemfile.
4 require 'bootsnap' # Speed up boot time by caching expensive operations.
5
6 Bootsnap.setup(
7 cache_dir: File.expand_path('../tmp/cache', __dir__),
8 development_mode: ENV.fetch('RAILS_ENV', 'development') == 'development',
9 load_path_cache: true,
10 autoload_paths_cache: true,
11 disable_trace: false,
12 compile_cache_iseq: false,
13 compile_cache_yaml: false
14 )
This page took 0.092076 seconds and 4 git commands to generate.