mirror of
https://github.com/discourse/discourse.git
synced 2025-02-18 11:02:45 +08:00
Make bootsnap MRI only for now
This commit is contained in:
parent
b301c9f6c1
commit
c234a14f0d
3
Gemfile
3
Gemfile
|
@ -2,8 +2,7 @@ source 'https://rubygems.org'
|
||||||
# if there is a super emergency and rubygems is playing up, try
|
# if there is a super emergency and rubygems is playing up, try
|
||||||
#source 'http://production.cf.rubygems.org'
|
#source 'http://production.cf.rubygems.org'
|
||||||
|
|
||||||
# does not install in linux ATM, so hack this for now
|
gem 'bootsnap', require: false, platform: :mri
|
||||||
gem 'bootsnap', require: false
|
|
||||||
|
|
||||||
def rails_master?
|
def rails_master?
|
||||||
ENV["RAILS_MASTER"] == '1'
|
ENV["RAILS_MASTER"] == '1'
|
||||||
|
|
|
@ -11,8 +11,13 @@ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
|
||||||
require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
|
require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
|
||||||
|
|
||||||
if ENV['RAILS_ENV'] != 'production' && ENV['RAILS_ENV'] != 'profile'
|
if ENV['RAILS_ENV'] != 'production' && ENV['RAILS_ENV'] != 'profile'
|
||||||
|
begin
|
||||||
require 'bootsnap'
|
require 'bootsnap'
|
||||||
|
rescue LoadError
|
||||||
|
# not a strong requirement
|
||||||
|
end
|
||||||
|
|
||||||
|
if defined? Bootsnap
|
||||||
Bootsnap.setup(
|
Bootsnap.setup(
|
||||||
cache_dir: 'tmp/cache', # Path to your cache
|
cache_dir: 'tmp/cache', # Path to your cache
|
||||||
load_path_cache: true, # Should we optimize the LOAD_PATH with a cache?
|
load_path_cache: true, # Should we optimize the LOAD_PATH with a cache?
|
||||||
|
@ -21,4 +26,5 @@ if ENV['RAILS_ENV'] != 'production' && ENV['RAILS_ENV'] != 'profile'
|
||||||
compile_cache_iseq: true, # Should compile Ruby code into ISeq cache?
|
compile_cache_iseq: true, # Should compile Ruby code into ISeq cache?
|
||||||
compile_cache_yaml: false # Skip YAML cache for now, cause we were seeing issues with it
|
compile_cache_yaml: false # Skip YAML cache for now, cause we were seeing issues with it
|
||||||
)
|
)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user