Method: Ufo::Booter#run_hooks

Defined in:
lib/ufo/booter.rb

#run_hooksObject

Special boot hooks run super early. Useful for setting env vars and other early things.

.ufo/boot.rb
.ufo/boot/dev.rb


13
14
15
16
17
# File 'lib/ufo/booter.rb', line 13

def run_hooks
  run_hook
  run_hook(Ufo.env)
  Ufo::Config::Inits.run_all
end