Method: Roby::Application#auto_load_search_path

Defined in:
lib/roby/app.rb

#auto_load_search_pathArray<String>

Returns the search path for the auto-load feature. It depends on the value of #auto_load_all?.

Returns:

  • (Array<String>)

    the search path for the auto-load feature. It depends on the value of #auto_load_all?



2873
2874
2875
2876
2877
2878
2879
# File 'lib/roby/app.rb', line 2873

def auto_load_search_path
    if auto_load_all? then search_path
    elsif app_dir then [app_dir]
    else
        []
    end
end