ronin-rb / ronin-support

A support library for Ronin. Like activesupport, but for hacking!
https://ronin-rb.dev
GNU Lesser General Public License v3.0
25 stars 9 forks source link

Add a `VersionNumber` class similar to `Gem::Version` #510

Open postmodern opened 1 month ago

postmodern commented 1 month ago

Add a VersionNumber class similar to Gem::Version, but accepts messier non-rubygem style versions. It must support parsing and comparing versions.

1234
1.2
1.2.3
1.2.3.4
1.2.3-4
1.2.3-4.5
1.2.3-foo
1.2.3.foo
1.2.3_4
1.2.3_4.5
1.2.3_foo
1.2.3+4
1.2.3+4.5
1.2.3+foo

This class can be used in ronin-exploits to aide in parsing and comparing version numbers.