method

equivalent_source?

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