class Bundler::Definition

def converge_paths

def converge_paths
  @sources.any? do |source|
    next unless source.instance_of?(Source::Path)
    specs_changed?(source) do |ls|
      ls.class == source.class && ls.path == source.path
    end
  end
end