class CKEditor5::Rails::Semver

def <=>(other)

def <=>(other)
  return nil unless other.is_a?(Semver)
  [major, minor, patch] <=> [other.major, other.minor, other.patch]
end