class Bundler::PubGrub::VersionRange

def strictly_lower?(other)

def strictly_lower?(other)
  return false if !max || !other.min
  case max <=> other.min
  when 0
    !include_max || !other.include_min
  when -1
    true
  when 1
    false
  end
end