Class: Tapioca::Loader

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/tapioca/loader.rb

Instance Method Summary collapse

Instance Method Details

#load_bundle(gemfile, initialize_file, require_file) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
# File 'lib/tapioca/loader.rb', line 9

def load_bundle(gemfile, initialize_file, require_file)
  require_helper(initialize_file)

  load_rails_application

  gemfile.require_bundle

  require_helper(require_file)

  load_rails_engines
end

#load_rails_application(environment_load: false, eager_load: false) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/tapioca/loader.rb', line 22

def load_rails_application(environment_load: false, eager_load: false)
  return unless File.exist?("config/application.rb")

  silence_deprecations

  if environment_load
    safe_require("./config/environment")
  else
    safe_require("./config/application")
  end

  eager_load_rails_app if eager_load
end