method

add_path_source

ruby latest stable - Class: Bundler::SourceList

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_path_source(options = {})
public

No documentation available.

# File lib/bundler/source_list.rb, line 21
    def add_path_source(options = {})
      if options["gemspec"]
        add_source_to_list Source::Gemspec.new(options), path_sources
      else
        add_source_to_list Source::Path.new(options), path_sources
      end
    end