Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rails_autoload.rb « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3518acf8b21c8c449d076452e46247098ea0c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true

# Mimics Rails autoloading with zeitwerk when used outside of Rails.
# This is used in:
# * fast_spec_helper
# * scripts/setup-test-env

require 'zeitwerk'
require 'active_support/string_inquirer'

module Rails
  extend self

  def root
    Pathname.new(File.expand_path('..', __dir__))
  end

  def env
    @_env ||= ActiveSupport::StringInquirer.new(ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "test")
  end

  def autoloaders
    @autoloaders ||= [
      Zeitwerk::Loader.new.tap do |loader|
        loader.inflector = _autoloader_inflector
      end
    ]
  end

  private

  def _autoloader_inflector
    # Try Rails 7 first.
    require 'rails/autoloaders/inflector'

    Rails::Autoloaders::Inflector
  rescue LoadError
    # Fallback to Rails 6.
    require 'active_support/dependencies'
    require 'active_support/dependencies/zeitwerk_integration'

    ActiveSupport::Dependencies::ZeitwerkIntegration::Inflector
  end
end

require_relative '../lib/gitlab'
require_relative '../config/initializers/0_inject_enterprise_edition_module'
require_relative '../config/initializers_before_autoloader/000_inflections'
require_relative '../config/initializers_before_autoloader/004_zeitwerk'

Rails.autoloaders.each do |autoloader|
  autoloader.push_dir('lib')
  autoloader.push_dir('ee/lib') if Gitlab.ee?
  autoloader.push_dir('jh/lib') if Gitlab.jh?
  autoloader.setup
end