method

equivalent_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.

equivalent_source?(source, other_source)
private

No documentation available.

# File lib/bundler/source_list.rb, line 166
    def equivalent_source?(source, other_source)
      return false unless Bundler.settings[:allow_deployment_source_credential_changes] && source.is_a?(Source::Rubygems)

      equivalent_rubygems_sources?([source], [other_source])
    end