Method: Roby::Application#search_path

Defined in:
lib/roby/app.rb

#search_pathArray<String>

The list of paths in which the application should be looking for files

Returns:

  • (Array<String>)


422
423
424
425
426
427
428
429
430
# File 'lib/roby/app.rb', line 422

def search_path
    if @search_path
        @search_path
    elsif app_dir
        [app_dir]
    else
        []
    end
end