/go-version-ruby

Ruby bindings for hashicorp/go-version for deep semver compatibility

Primary LanguageRubyMozilla Public License 2.0MPL-2.0

go-version-ruby

Ruby bindings for hashicorp/go-version. Versions correspond to underlying go-version release versions.

Why?

This can be useful when you want to match the exact behavior of go-version from a ruby app.

Prerequisites

go 1.17

Installing

gem install go_version

Usage

require 'go_version'

constraint = GoVersion::Constraint.new("> 1.0.0")
constraint.check("1.1.0") # true
constraint.check("1.0.0") # false