Method: Jets::Application#setup_autoload_paths
- Defined in:
- lib/jets/application.rb
#setup_autoload_paths ⇒ Object
107 108 109 110 111 112 113 |
# File 'lib/jets/application.rb', line 107 def setup_autoload_paths autoload_paths = default_autoload_paths + config.autoload_paths autoload_paths.each do |path| next unless File.exist?(path) main_loader.push_dir(path) end end |