1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-24 07:06:18 +09:00
mastodon/config/boot.rb

15 lines
490 B
Ruby
Raw Normal View History

2016-08-18 00:56:23 +09:00
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
2016-02-21 06:53:20 +09:00
require 'bundler/setup' # Set up gems listed in the Gemfile.
2018-10-01 21:06:40 +09:00
require 'bootsnap' # Speed up boot time by caching expensive operations.
Bootsnap.setup(
cache_dir: 'tmp/cache',
development_mode: ENV.fetch('RAILS_ENV', 'development') == 'development',
load_path_cache: true,
autoload_paths_cache: true,
disable_trace: false,
compile_cache_iseq: false,
compile_cache_yaml: false
)