Method: Vedeu::Runtime::Bootstrap#client_configuration!

Defined in:
lib/vedeu/runtime/bootstrap.rb

#client_configuration!void (private)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Note:

config/configuration.rb is already loaded so don’t load it twice.

This method returns an undefined value.



61
62
63
64
65
66
67
# File 'lib/vedeu/runtime/bootstrap.rb', line 61

def client_configuration!
  Dir[File.join(base_path, 'config/**/*')].each do |path|
    next if path =~ %r{config/configuration\.rb}

    load(path)
  end
end