version_gem 1.1.3 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +9 -1
- data/CONTRIBUTING.md +50 -5
- data/README.md +22 -2
- data/lib/version_gem/api.rb +0 -0
- data/lib/version_gem/version.rb +1 -1
- data/lib/version_gem.rb +0 -0
- data.tar.gz.sig +0 -0
- metadata +27 -27
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 293448abeed414d0a43cee34925de9e94cf3329326e248d18694d499f1952e47
|
4
|
+
data.tar.gz: 24a83ab4592f9b5271205ee24b7829af6bb13aae5f2a74f982663aad127ac6b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b668065b9b75fd6e7e262ee7a8237da8e8844bdb9f11978cc504da6d7da5dce436bbe3af096c1feb18aab0b0d938a3b083a6090af992ae60ffd849f0f5e8e86
|
7
|
+
data.tar.gz: cf0d558fc6ffb5a39795515c4b98553e7703a2ccc120488e5ca09c2ae4c7761143c0127506da9596606ea57bd47627be3ef41ee19f2f930e755d5044b901bbe3
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
10
10
|
### Fixed
|
11
11
|
### Removed
|
12
12
|
|
13
|
+
## [1.1.4] 2024-03-21 ([tag][1.1.4t])
|
14
|
+
### Added
|
15
|
+
- Ruby 3.3 to CI (@pboling)
|
16
|
+
### Fixed
|
17
|
+
- Remove the executable bit from non-executable files (@Fryguy)
|
18
|
+
|
13
19
|
## [1.1.3] 2023-06-05 ([tag][1.1.3t])
|
14
20
|
### Added
|
15
21
|
- More test coverage (now 100% 🎉) (@pboling)
|
@@ -66,7 +72,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
66
72
|
### Added
|
67
73
|
- Initial release, with basic version parsing API (@pboling)
|
68
74
|
|
69
|
-
[Unreleased]: https://gitlab.com/oauth-xx/version_gem/-/compare/v1.1.
|
75
|
+
[Unreleased]: https://gitlab.com/oauth-xx/version_gem/-/compare/v1.1.4...HEAD
|
76
|
+
[1.1.4]: https://gitlab.com/oauth-xx/version_gem/-/compare/v1.1.3...v1.1.4
|
77
|
+
[1.1.4t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.1.4
|
70
78
|
[1.1.3]: https://gitlab.com/oauth-xx/version_gem/-/compare/v1.1.2...v1.1.3
|
71
79
|
[1.1.3t]: https://gitlab.com/oauth-xx/oauth2/-/tags/v1.1.3
|
72
80
|
[1.1.2]: https://gitlab.com/oauth-xx/version_gem/-/compare/v1.1.1...v1.1.2
|
data/CONTRIBUTING.md
CHANGED
@@ -1,5 +1,47 @@
|
|
1
1
|
## Contributing
|
2
2
|
|
3
|
+
Bug reports and pull requests are welcome on GitHub at [https://gitlab.com/oauth-xx/version_gem][🚎src-main]
|
4
|
+
. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
|
5
|
+
the [code of conduct][🤝conduct].
|
6
|
+
|
7
|
+
To submit a patch, please fork the project and create a patch with
|
8
|
+
tests. Once you're happy with it send a pull request and post a message to the
|
9
|
+
[google group][⛳mail-list] or on the [gitter chat][🏘chat].
|
10
|
+
|
11
|
+
## Release
|
12
|
+
|
13
|
+
To release a new version:
|
14
|
+
|
15
|
+
1. Run `bin/setup && bin/rake` as a tests, coverage, & linting sanity check
|
16
|
+
2. Update the version number in `version.rb`
|
17
|
+
3. Run `bin/setup && bin/rake` again as a secondary check, and to update `Gemfile.lock`
|
18
|
+
4. Run `git commit -am "🔖 Prepare release v<VERSION>"` to commit the changes
|
19
|
+
5. Run `git push` to trigger the final CI pipeline before release, & merge PRs
|
20
|
+
a. NOTE: Remember to [check the build][🧪build]!
|
21
|
+
6. Run `git checkout main` (Or whichever branch is considered `trunk`, e.g. `master`)
|
22
|
+
7. Run `git pull origin main` to ensure you will release the latest trunk code.
|
23
|
+
8. Set `SOURCE_DATE_EPOCH` so `rake build` and `rake release` use same timestamp, and generate same checksums
|
24
|
+
a. Run `export SOURCE_DATE_EPOCH=$EPOCHSECONDS` (you'll need the zsh/datetime module, if running zsh)
|
25
|
+
9. Run `bundle exec rake build`
|
26
|
+
10. Run [`bin/checksums`](https://github.com/rubygems/guides/pull/325) to create SHA-256 and SHA-512 checksums
|
27
|
+
a. Checksums will be committed automatically by the script, but not pushed
|
28
|
+
11. Run `bundle exec rake release` which will create a git tag for the version,
|
29
|
+
push git commits and tags, and push the `.gem` file to [rubygems.org][💎rubygems]
|
30
|
+
|
31
|
+
NOTE: You will need to have a public key in `certs/`, and list your cert in the
|
32
|
+
`gemspec`, in order to sign the new release.
|
33
|
+
See: [RubyGems Security Guide][🔒️rubygems-security-guide]
|
34
|
+
|
35
|
+
## Contributors
|
36
|
+
|
37
|
+
[![Contributors](https://contrib.rocks/image?repo=oauth-xx/version_gem)][🖐contributors]
|
38
|
+
|
39
|
+
Made with [contributors-img][🖐contrib-rocks].
|
40
|
+
|
41
|
+
Also see GitLab Contributors: [https://gitlab.com/oauth-xx/version_gem/-/graphs/main][🚎contributors]
|
42
|
+
|
43
|
+
## Contributing
|
44
|
+
|
3
45
|
Bug reports and pull requests are welcome on GitLab at [https://gitlab.com/oauth-xx/version_gem][🚎src-main]
|
4
46
|
. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
|
5
47
|
the [code of conduct][conduct].
|
@@ -27,14 +69,17 @@ See: [RubyGems Security Guide][rubygems-security-guide]
|
|
27
69
|
|
28
70
|
## Contributors
|
29
71
|
|
30
|
-
See: [https://gitlab.com/oauth-xx/version_gem/-/graphs/main][🚎contributors]
|
31
72
|
|
32
73
|
[comment]: <> (Following links are used by README, CONTRIBUTING)
|
33
74
|
|
34
|
-
[conduct]: https://gitlab.com/oauth-xx/version_gem/-/blob/main/CODE_OF_CONDUCT.md
|
35
75
|
[🚎contributors]: https://gitlab.com/oauth-xx/version_gem/-/graphs/main
|
36
76
|
[⛳mail-list]: http://groups.google.com/group/oauth-ruby
|
37
77
|
[🚎src-main]: https://gitlab.com/oauth-xx/version_gem
|
38
|
-
[
|
39
|
-
[
|
40
|
-
[
|
78
|
+
[🧪build]: https://github.com/oauth-xx/version_gem/actions
|
79
|
+
[🏘chat]: https://matrix.to/#/#pboling_version_gem:gitter.im
|
80
|
+
[🤝conduct]: https://gitlab.com/oauth-xx/version_gem/-/blob/main/CODE_OF_CONDUCT.md
|
81
|
+
[🖐contrib-rocks]: https://contrib.rocks
|
82
|
+
[🖐contributors]: https://github.com/oauth-xx/version_gem/graphs/contributors
|
83
|
+
[💎rubygems]: https://rubygems.org
|
84
|
+
[🔒️rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
|
85
|
+
[🚎src-main]: https://github.com/oauth-xx/version_gem
|
data/README.md
CHANGED
@@ -13,6 +13,26 @@ gem from the Alchemists, or _[version_sorter](https://rubygems.org/gems/version_
|
|
13
13
|
|
14
14
|
For more discussion about this [see issue #2](https://gitlab.com/oauth-xx/version_gem/-/issues/2)
|
15
15
|
|
16
|
+
-----
|
17
|
+
|
18
|
+
<div id="badges">
|
19
|
+
|
20
|
+
[![Liberapay Patrons][⛳liberapay-img]][⛳liberapay]
|
21
|
+
[![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor]
|
22
|
+
<span class="badge-buymeacoffee">
|
23
|
+
<a href="https://ko-fi.com/O5O86SNP4" target='_blank' title="Donate to my FLOSS or refugee efforts at ko-fi.com"><img src="https://img.shields.io/badge/buy%20me%20coffee-donate-yellow.svg" alt="Buy me coffee donation button" /></a>
|
24
|
+
</span>
|
25
|
+
<span class="badge-patreon">
|
26
|
+
<a href="https://patreon.com/galtzo" title="Donate to my FLOSS or refugee efforts using Patreon"><img src="https://img.shields.io/badge/patreon-donate-yellow.svg" alt="Patreon donate button" /></a>
|
27
|
+
</span>
|
28
|
+
|
29
|
+
</div>
|
30
|
+
|
31
|
+
[⛳liberapay-img]: https://img.shields.io/liberapay/patrons/pboling.svg?logo=liberapay
|
32
|
+
[⛳liberapay]: https://liberapay.com/pboling/donate
|
33
|
+
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
34
|
+
[🖇sponsor]: https://github.com/sponsors/pboling
|
35
|
+
|
16
36
|
## Still here?
|
17
37
|
|
18
38
|
Give your next library an introspectable `Version` module without breaking your Gemspec.
|
@@ -62,7 +82,7 @@ appended indicators:
|
|
62
82
|
|:----|--------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
63
83
|
| 1️⃣ | name, license, docs, standards | [![RubyGems.org][⛳️name-img]][⛳️gem] [![License: MIT][🖇src-license-img]][🖇src-license] [![RubyDoc.info][🚎yard-img]][🚎yard] [![SemVer 2.0.0][🧮semver-img]][🧮semver] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog] |
|
64
84
|
| 2️⃣ | version & activity | [![Gem Version][⛳️version-img]][⛳️gem] [![Total Downloads][🖇DL-total-img]][⛳️gem] [![Download Rank][🏘DL-rank-img]][⛳️gem] [![Source Code][🚎src-main-img]][🚎src-main] [![Open PRs][🖐prs-o-img]][🖐prs-o] [![Closed PRs][🧮prs-c-img]][🧮prs-c] |
|
65
|
-
| 3️⃣ |
|
85
|
+
| 3️⃣ | maintenance & linting | [![Maintainability][⛳cclim-maint-img♻️]][⛳cclim-maint] [![Helpers][🖇triage-help-img]][🖇triage-help] [![Depfu][🏘depfu-img♻️]][🏘depfu♻️] [![Contributors][🚎contributors-img]][🚎contributors] [![Style][🖐style-wf-img]][🖐style-wf] [![Kloc Roll][🧮kloc-img]][🧮kloc] |
|
66
86
|
| 4️⃣ | testing | [![Supported][🏘sup-wf-img]][🏘sup-wf] [![Heads][🚎heads-wf-img]][🚎heads-wf] [![Unofficial Support][🖐uns-wf-img]][🖐uns-wf] <!--[![MacOS][🧮mac-wf-img]][🧮mac-wf] [![Windows][📗win-wf-img]][📗win-wf]--> |
|
67
87
|
| 5️⃣ | coverage & security | [![CodeClimate][⛳cclim-cov-img♻️]][⛳cclim-cov] [![CodeCov][🖇codecov-img♻️]][🖇codecov] [![Coveralls][🏘coveralls-img]][🏘coveralls] [![Security Policy][🚎sec-pol-img]][🚎sec-pol] [![CodeQL][🖐codeQL-img]][🖐codeQL] [![Code Coverage][🧮cov-wf-img]][🧮cov-wf] |
|
68
88
|
| 6️⃣ | resources | [![Get help on Codementor][🖇codementor-img]][🖇codementor] [![Chat][🏘chat-img]][🏘chat] [![Blog][🚎blog-img]][🚎blog] [![Wiki][🖐wiki-img]][🖐wiki] |
|
@@ -95,7 +115,7 @@ The link tokens in the following sections should be kept ordered by the row and
|
|
95
115
|
[🧮prs-c]: https://github.com/pboling/version_gem/pulls?q=is%3Apr+is%3Aclosed
|
96
116
|
[🧮prs-c-img]: https://img.shields.io/github/issues-pr-closed/pboling/version_gem
|
97
117
|
|
98
|
-
<!-- 3️⃣
|
118
|
+
<!-- 3️⃣ maintenance & linting -->
|
99
119
|
[⛳cclim-maint]: https://codeclimate.com/github/pboling/version_gem/maintainability
|
100
120
|
[⛳cclim-maint-img♻️]: https://api.codeclimate.com/v1/badges/b504d61c4ed1d46aec02/maintainability
|
101
121
|
[🖇triage-help]: https://www.codetriage.com/pboling/version_gem
|
data/lib/version_gem/api.rb
CHANGED
File without changes
|
data/lib/version_gem/version.rb
CHANGED
data/lib/version_gem.rb
CHANGED
File without changes
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: version_gem
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
@@ -12,31 +12,31 @@ cert_chain:
|
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
13
|
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
14
14
|
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
15
|
-
|
15
|
+
A2NvbTAeFw0yMzA5MjAxNzMwMjhaFw0yNDA5MTkxNzMwMjhaMEMxFTATBgNVBAMM
|
16
16
|
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
17
|
+
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEA+a9UvHo3
|
18
|
+
84k96WgU5Kk5HB+cLZs/modjorsTfqY67MJF5nNvAoqcKTUBW4uG+Zpfnm3jaDO5
|
19
|
+
GxhJEIZWfndYzycHT2KMVQ1uTP82ba8ZaKrPlPIafkbui3mdds47qsmqHiblKERg
|
20
|
+
U532lkwfqHDlJwE7OBZQ59EwWWLynlT/yAUHpOBbqIuHKUxdpmBI+sIjrZcD1e05
|
21
|
+
WmjkO6fwIdC5oM757aoPxIgXD587VOViH11Vkm2doskj4T8yONtwVHlcrrhJ9Bzd
|
22
|
+
/zdp6vEn7GZQrABvpOlqwWxQ72ZnFhJe/RJZf6CXOPOh69Ai0QKYl2a1sYuCJKS3
|
23
|
+
nsBnxXJINEEznjR7rZjNUmYD+CZqfjzgPqedRxTlASe7iA4w7xZOqMDzcuhNwcUQ
|
24
|
+
tMEH6BTktxKP3jXZPXRfHCf6s+HRVb6vezAonTBVyydf5Xp5VwWkd6cwm+2BzHl5
|
25
|
+
7kc/3lLxKMcsyEUprAsk8LdHohwZdC267l+RS++AP6Cz6x+nB3oGob19AgMBAAGj
|
26
|
+
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQCSSas60GqqMjt
|
27
|
+
xR7LoY1gucEvtzAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
28
28
|
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
29
|
+
ggGBAMl9ifcw5p+PdvB7dCPoNKoVdp/2LbC9ztETHuYL2gUMJB6UoS3o9c/piSuR
|
30
|
+
V3ZMQaijmNu6ms1bWAtJ66LjmYrVflJtf9yp31Kierr9LpisMSUx2qbMOHGa8d2Z
|
31
|
+
vCUWPF8E9Cg0mP3GAyZ6qql8jDh/anUKeksPXqJvNxNPDu2DVYsa/IWdl96whzS4
|
32
|
+
Bl7SwB1E7agps40UcshCSKaVDOU0M+XN6SrnJMElnBic+KSAkBkVFbzS0BE4ODZM
|
33
|
+
BgE6nYzQ05qhuvbE+oGdACTlemNtDDWCh0uw+7x0q2PocGIDU5zsPn/WNTkCXPmB
|
34
|
+
CHGvqDNWq4M7ncTKAaS2XExgyb7uPdq9fKiOW8nmH+zCiGzJXzBWwZlKf7L4Ht9E
|
35
|
+
a3f0e5C+zvee9Z5Ng9ciyfav9/fcXgYt5MjoBv27THr5XfBhgOCIHSYW2tqJmWKi
|
36
|
+
KuxrfYrN+9HvMdm+nZ6TypmKftHY3Gj+/uu+g8Icm/zrvTWAEE0mcJOkfrIoNPJb
|
37
|
+
pF8dMA==
|
38
38
|
-----END CERTIFICATE-----
|
39
|
-
date:
|
39
|
+
date: 2024-03-21 00:00:00.000000000 Z
|
40
40
|
dependencies:
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
@@ -120,10 +120,10 @@ licenses:
|
|
120
120
|
- MIT
|
121
121
|
metadata:
|
122
122
|
homepage_uri: https://gitlab.com/oauth-xx/version_gem
|
123
|
-
source_code_uri: https://gitlab.com/oauth-xx/version_gem/-/tree/v1.1.
|
124
|
-
changelog_uri: https://gitlab.com/oauth-xx/version_gem/-/blob/v1.1.
|
123
|
+
source_code_uri: https://gitlab.com/oauth-xx/version_gem/-/tree/v1.1.4
|
124
|
+
changelog_uri: https://gitlab.com/oauth-xx/version_gem/-/blob/v1.1.4/CHANGELOG.md
|
125
125
|
bug_tracker_uri: https://gitlab.com/oauth-xx/version_gem/-/issues
|
126
|
-
documentation_uri: https://www.rubydoc.info/gems/version_gem/1.1.
|
126
|
+
documentation_uri: https://www.rubydoc.info/gems/version_gem/1.1.4
|
127
127
|
wiki_uri: https://gitlab.com/oauth-xx/version_gem/-/wiki
|
128
128
|
mailing_list_uri: https://groups.google.com/g/oauth-ruby
|
129
129
|
funding_uri: https://liberapay.com/pboling
|
@@ -143,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
143
|
- !ruby/object:Gem::Version
|
144
144
|
version: '0'
|
145
145
|
requirements: []
|
146
|
-
rubygems_version: 3.
|
146
|
+
rubygems_version: 3.5.6
|
147
147
|
signing_key:
|
148
148
|
specification_version: 4
|
149
149
|
summary: Enhance your VERSION! Sugar for Version modules.
|
metadata.gz.sig
CHANGED
Binary file
|