class Bundler::PubGrub::VersionRange

def contiguous_to?(other)

def contiguous_to?(other)
  return false if other.empty?
  intersects?(other) ||
    (min == other.max && (include_min || other.include_max)) ||
    (max == other.min && (include_max || other.include_min))
end