mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 06:58:31 +08:00
add bootsnap to speed up test and dev
This commit is contained in:
@ -10,15 +10,18 @@ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
||||
|
||||
require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
|
||||
|
||||
if false && ENV['BOOTSNAP'] #&& ENV['RAILS_ENV'] != 'production'
|
||||
|
||||
if ENV['RAILS_ENV'] != 'production'
|
||||
is_mac = !!(RUBY_PLATFORM =~ /darwin/)
|
||||
|
||||
require 'bootsnap'
|
||||
|
||||
Bootsnap.setup(
|
||||
cache_dir: 'tmp/cache', # Path to your cache
|
||||
development_mode: ENV['BOOTSNAP_DEV'] == 'development',
|
||||
load_path_cache: true, # Should we optimize the LOAD_PATH with a cache?
|
||||
autoload_paths_cache: true, # Should we optimize ActiveSupport autoloads with cache?
|
||||
disable_trace: false, # Sets `RubyVM::InstructionSequence.compile_option = { trace_instruction: false }`
|
||||
compile_cache_iseq: true, # Should compile Ruby code into ISeq cache?
|
||||
compile_cache_yaml: true # Should compile YAML into a cache?
|
||||
compile_cache_iseq: is_mac, # Should compile Ruby code into ISeq cache?
|
||||
compile_cache_yaml: is_mac # Should compile YAML into a cache?
|
||||
)
|
||||
end
|
||||
|
Reference in New Issue
Block a user