method

load_paths

ruby latest stable - Class: Gem::Specification

Method not available on this version

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

load_paths()
public

No documentation available.

# File lib/bundler/rubygems_ext.rb, line 65
    def load_paths
      return full_require_paths if respond_to?(:full_require_paths)

      require_paths.map do |require_path|
        if require_path.include?(full_gem_path)
          require_path
        else
          File.join(full_gem_path, require_path)
        end
      end
    end