method

add_to_load_path

ruby latest stable - Class: Bundler::Plugin

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

add_to_load_path(load_paths)
public

No documentation available.

# File lib/bundler/plugin.rb, line 279
    def add_to_load_path(load_paths)
      if insert_index = Bundler.rubygems.load_path_insert_index
        $LOAD_PATH.insert(insert_index, *load_paths)
      else
        $LOAD_PATH.unshift(*load_paths)
      end
    end