I have an initializer that loads configuration settings from a yaml file. I need to use these settings in other initializers. The settings are not being seen by the initiali
Use a require_relative to make sure one file is loaded first.
# aaa.rb require_relative 'bbb' # ... code using values from bbb.rb ...