2014-12-07 17:54:35 -05:00
|
|
|
if ENV['DISCOURSE_DUMP_HEAP'] == "1"
|
|
|
|
require 'objspace'
|
2016-06-09 23:00:15 -04:00
|
|
|
ObjectSpace.trace_object_allocations_start
|
2014-12-07 17:54:35 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
require 'rubygems'
|
|
|
|
|
|
|
|
# Set up gems listed in the Gemfile.
|
|
|
|
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
|
|
|
|
|
|
|
require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
|
2017-04-25 13:15:12 -04:00
|
|
|
|
2017-05-11 13:51:38 -04:00
|
|
|
|
|
|
|
if ENV['RAILS_ENV'] != 'production'
|
|
|
|
is_mac = !!(RUBY_PLATFORM =~ /darwin/)
|
|
|
|
|
2017-04-25 13:15:12 -04:00
|
|
|
require 'bootsnap'
|
2017-05-11 13:51:38 -04:00
|
|
|
|
2017-04-25 13:15:12 -04:00
|
|
|
Bootsnap.setup(
|
|
|
|
cache_dir: 'tmp/cache', # Path to your cache
|
|
|
|
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 }`
|
2017-05-11 13:51:38 -04:00
|
|
|
compile_cache_iseq: is_mac, # Should compile Ruby code into ISeq cache?
|
|
|
|
compile_cache_yaml: is_mac # Should compile YAML into a cache?
|
2017-04-25 13:15:12 -04:00
|
|
|
)
|
|
|
|
end
|