deb_version 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +4 -2
- data/lib/deb_version/version.rb +1 -1
- metadata +5 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e206b0d0f14804d5bc665f82009a01c61132afa20035ad1be0a62a5545291c75
|
4
|
+
data.tar.gz: 0b106de6b9b7dc40d8fc19dc3617d28fab34892c1317038468f4d627addd1286
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61e3945cc65e6a9be4700e9dedd88e4e6cc30e71761ec4bc5feb43b437178b1b20225ad1237554279ac0fb90037032e9e982143246172d1bbf2857f56ef90e3d
|
7
|
+
data.tar.gz: 60f7dcdf7c0aa2ec2587ae07bf877e0f032a24d94c71eebbaf44a81209465dbdcafeafb05705fb1a4cac1a50363267b43c02755daedff12ab87f4f8907c2f761
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
# Debian Version (Ruby)
|
2
2
|
|
3
|
+
[](https://github.com/captn3m0/ruby-deb-version/blob/main/LICENSE.txt) [](https://rubygems.org/gems/deb_version) [](https://github.com/captn3m0/ruby-deb-version/actions/workflows/main.yml?query=branch%3Amain)  [](https://github.com/captn3m0/ruby-deb-version/issues?q=is%3Aissue+is%3Aopen)
|
4
|
+
|
3
5
|
A port of "Debian Version" comparison function to Ruby. This is based on
|
4
6
|
[Debian Policy Manual v4.6.20, Section 5.6.12](https://www.debian.org/doc/debian-policy/ch-controlfields.html#version).
|
5
7
|
|
6
|
-
It adapts some of the code from https://github.com/FauxFaux/deb-version and https://github.com/xolox/python-deb-pkg-tools
|
8
|
+
It adapts some of the code and tests from https://github.com/FauxFaux/deb-version and https://github.com/xolox/python-deb-pkg-tools
|
7
9
|
|
8
10
|
## Installation
|
9
11
|
|
@@ -42,7 +44,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/captn3
|
|
42
44
|
|
43
45
|
## License
|
44
46
|
|
45
|
-
The gem is available as open source under the terms of the [MIT License](https://
|
47
|
+
The gem is available as open source under the terms of the [MIT License](https://nemo.mit-license.org/).
|
46
48
|
|
47
49
|
## Code of Conduct
|
48
50
|
|
data/lib/deb_version/version.rb
CHANGED
metadata
CHANGED
@@ -1,16 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deb_version
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nemo
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies: []
|
13
|
-
description:
|
14
12
|
email:
|
15
13
|
- rubygem@captnemo.in
|
16
14
|
executables: []
|
@@ -31,9 +29,8 @@ licenses:
|
|
31
29
|
metadata:
|
32
30
|
homepage_uri: https://github.com/captn3m0/ruby-deb-version
|
33
31
|
source_code_uri: https://github.com/captn3m0/ruby-deb-version
|
34
|
-
changelog_uri: https://github.com/captn3m0/ruby-deb-version/blob/main/
|
32
|
+
changelog_uri: https://github.com/captn3m0/ruby-deb-version/blob/main/CHANGELOG.md
|
35
33
|
rubygems_mfa_required: 'true'
|
36
|
-
post_install_message:
|
37
34
|
rdoc_options: []
|
38
35
|
require_paths:
|
39
36
|
- lib
|
@@ -41,15 +38,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
41
38
|
requirements:
|
42
39
|
- - ">="
|
43
40
|
- !ruby/object:Gem::Version
|
44
|
-
version: 3.
|
41
|
+
version: 3.1.0
|
45
42
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
46
43
|
requirements:
|
47
44
|
- - ">="
|
48
45
|
- !ruby/object:Gem::Version
|
49
46
|
version: '0'
|
50
47
|
requirements: []
|
51
|
-
rubygems_version: 3.
|
52
|
-
signing_key:
|
48
|
+
rubygems_version: 3.6.9
|
53
49
|
specification_version: 4
|
54
50
|
summary: A port of Debian Version comparison to Ruby.
|
55
51
|
test_files: []
|