Method: Roby::Application#prepend_search_path

Defined in:
lib/roby/app.rb

#prepend_search_path(path) ⇒ Object

Add a path to the search path, with the highest priority for e.g. find_files

This path will be put in front of the app dir itself



435
436
437
438
439
# File 'lib/roby/app.rb', line 435

def prepend_search_path(path)
    @search_path ||= self.search_path
    @search_path.unshift path
    update_load_path
end