version_gem 1.1.8 → 1.1.10
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +186 -40
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +3 -4
- data/CONTRIBUTING.md +203 -68
- data/FUNDING.md +74 -0
- data/LICENSE.md +11 -0
- data/README.md +388 -242
- data/RUBOCOP.md +71 -0
- data/certs/pboling.pem +27 -0
- data/lib/version_gem/api.rb +1 -1
- data/lib/version_gem/epoch.rb +1 -1
- data/lib/version_gem/ruby.rb +2 -2
- data/lib/version_gem/version.rb +2 -8
- data/lib/version_gem.rb +1 -0
- data/sig/all_formatters.rbs +1 -0
- data/sig/debug.rbs +1 -0
- data/sig/debug_ide.rbs +1 -0
- data/sig/debug_jruby.rbs +1 -0
- data/sig/debugging.rbs +1 -0
- data/sig/run_coverage.rbs +1 -0
- data/sig/version_gem/api.rbs +27 -0
- data/sig/version_gem/basic.rbs +5 -0
- data/sig/version_gem/epoch.rbs +26 -0
- data/sig/version_gem/error.rbs +4 -0
- data/sig/version_gem/ruby.rbs +11 -0
- data/sig/version_gem/version.rbs +6 -0
- data/sig/version_gem.rbs +2 -0
- data.tar.gz.sig +0 -0
- metadata +197 -27
- metadata.gz.sig +0 -0
- data/LICENSE.txt +0 -21
data/RUBOCOP.md
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# RuboCop Usage Guide
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
A tale of two RuboCop plugin gems.
|
|
6
|
+
|
|
7
|
+
### RuboCop Gradual
|
|
8
|
+
|
|
9
|
+
This project uses `rubocop_gradual` instead of vanilla RuboCop for code style checking. The `rubocop_gradual` tool allows for gradual adoption of RuboCop rules by tracking violations in a lock file.
|
|
10
|
+
|
|
11
|
+
### RuboCop LTS
|
|
12
|
+
|
|
13
|
+
This project uses `rubocop-lts` to ensure, on a best-effort basis, compatibility with Ruby >= 1.9.2.
|
|
14
|
+
RuboCop rules are meticulously configured by the `rubocop-lts` family of gems to ensure that a project is compatible with a specific version of Ruby. See: https://rubocop-lts.gitlab.io for more.
|
|
15
|
+
|
|
16
|
+
## Checking RuboCop Violations
|
|
17
|
+
|
|
18
|
+
To check for RuboCop violations in this project, always use:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
bundle exec rake rubocop_gradual:check
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
**Do not use** the standard RuboCop commands like:
|
|
25
|
+
- `bundle exec rubocop`
|
|
26
|
+
- `rubocop`
|
|
27
|
+
|
|
28
|
+
## Understanding the Lock File
|
|
29
|
+
|
|
30
|
+
The `.rubocop_gradual.lock` file tracks all current RuboCop violations in the project. This allows the team to:
|
|
31
|
+
|
|
32
|
+
1. Prevent new violations while gradually fixing existing ones
|
|
33
|
+
2. Track progress on code style improvements
|
|
34
|
+
3. Ensure CI builds don't fail due to pre-existing violations
|
|
35
|
+
|
|
36
|
+
## Common Commands
|
|
37
|
+
|
|
38
|
+
- **Check violations**
|
|
39
|
+
- `bundle exec rake rubocop_gradual`
|
|
40
|
+
- `bundle exec rake rubocop_gradual:check`
|
|
41
|
+
- **(Safe) Autocorrect violations, and update lockfile if no new violations**
|
|
42
|
+
- `bundle exec rake rubocop_gradual:autocorrect`
|
|
43
|
+
- **Force update the lock file (w/o autocorrect) to match violations present in code**
|
|
44
|
+
- `bundle exec rake rubocop_gradual:force_update`
|
|
45
|
+
|
|
46
|
+
## Workflow
|
|
47
|
+
|
|
48
|
+
1. Before submitting a PR, run `bundle exec rake rubocop_gradual:autocorrect`
|
|
49
|
+
a. or just the default `bundle exec rake`, as autocorrection is a pre-requisite of the default task.
|
|
50
|
+
2. If there are new violations, either:
|
|
51
|
+
- Fix them in your code
|
|
52
|
+
- Run `bundle exec rake rubocop_gradual:force_update` to update the lock file (only for violations you can't fix immediately)
|
|
53
|
+
3. Commit the updated `.rubocop_gradual.lock` file along with your changes
|
|
54
|
+
|
|
55
|
+
## Never add inline RuboCop disables
|
|
56
|
+
|
|
57
|
+
Do not add inline `rubocop:disable` / `rubocop:enable` comments anywhere in the codebase (including specs, except when following the few existing `rubocop:disable` patterns for a rule already being disabled elsewhere in the code). We handle exceptions in two supported ways:
|
|
58
|
+
|
|
59
|
+
- Permanent/structural exceptions: prefer adjusting the RuboCop configuration (e.g., in `.rubocop.yml`) to exclude a rule for a path or file pattern when it makes sense project-wide.
|
|
60
|
+
- Temporary exceptions while improving code: record the current violations in `.rubocop_gradual.lock` via the gradual workflow:
|
|
61
|
+
- `bundle exec rake rubocop_gradual:autocorrect` (preferred; will autocorrect what it can and update the lock only if no new violations were introduced)
|
|
62
|
+
- If needed, `bundle exec rake rubocop_gradual:force_update` (as a last resort when you cannot fix the newly reported violations immediately)
|
|
63
|
+
|
|
64
|
+
In general, treat the rules as guidance to follow; fix violations rather than ignore them. For example, RSpec conventions in this project expect `described_class` to be used in specs that target a specific class under test.
|
|
65
|
+
|
|
66
|
+
## Benefits of rubocop_gradual
|
|
67
|
+
|
|
68
|
+
- Allows incremental adoption of code style rules
|
|
69
|
+
- Prevents CI failures due to pre-existing violations
|
|
70
|
+
- Provides a clear record of code style debt
|
|
71
|
+
- Enables focused efforts on improving code quality over time
|
data/certs/pboling.pem
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
|
2
|
+
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
|
3
|
+
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
|
4
|
+
A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
|
|
5
|
+
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
|
6
|
+
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
|
|
7
|
+
uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
|
|
8
|
+
LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
|
|
9
|
+
mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
|
|
10
|
+
coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
|
|
11
|
+
FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
|
|
12
|
+
yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
|
|
13
|
+
to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
|
|
14
|
+
qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
|
|
15
|
+
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
|
|
16
|
+
HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
|
17
|
+
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
|
18
|
+
ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
|
|
19
|
+
wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
|
|
20
|
+
L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
|
|
21
|
+
GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
|
|
22
|
+
kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
|
|
23
|
+
QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
|
|
24
|
+
0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
|
|
25
|
+
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
|
26
|
+
L9nRqA==
|
|
27
|
+
-----END CERTIFICATE-----
|
data/lib/version_gem/api.rb
CHANGED
data/lib/version_gem/epoch.rb
CHANGED
data/lib/version_gem/ruby.rb
CHANGED
|
@@ -7,7 +7,7 @@ module VersionGem
|
|
|
7
7
|
|
|
8
8
|
# Check if the current Ruby version is greater than or equal to the given version
|
|
9
9
|
def gte_minimum_version?(version, engine = "ruby")
|
|
10
|
-
|
|
10
|
+
::Gem::Version.new(version) <= RUBY_VER && engine == ::RUBY_ENGINE
|
|
11
11
|
end
|
|
12
12
|
module_function :gte_minimum_version?
|
|
13
13
|
|
|
@@ -16,7 +16,7 @@ module VersionGem
|
|
|
16
16
|
segs = RUBY_VER.segments
|
|
17
17
|
major.to_i == segs[0] &&
|
|
18
18
|
minor.to_i == segs[1] &&
|
|
19
|
-
|
|
19
|
+
engine == ::RUBY_ENGINE
|
|
20
20
|
end
|
|
21
21
|
module_function :actual_minor_version?
|
|
22
22
|
end
|
data/lib/version_gem/version.rb
CHANGED
|
@@ -2,13 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
module VersionGem
|
|
4
4
|
module Version
|
|
5
|
-
VERSION = "1.1.
|
|
6
|
-
# This would work in this gem, but not in external libraries,
|
|
7
|
-
# because version files are loaded in Gemspecs before bundler
|
|
8
|
-
# has a chance to load dependencies.
|
|
9
|
-
# Instead, see lib/version_gem.rb for a solution that will work everywhere
|
|
10
|
-
# extend VersionGem::Basic
|
|
11
|
-
# or
|
|
12
|
-
# extend VersionGem::Epoch
|
|
5
|
+
VERSION = "1.1.10"
|
|
13
6
|
end
|
|
7
|
+
VERSION = Version::VERSION # Traditional Constant Location
|
|
14
8
|
end
|
data/lib/version_gem.rb
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ALL_FORMATTERS: bool
|
data/sig/debug.rbs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DEBUG: bool
|
data/sig/debug_ide.rbs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DEBUG_IDE: bool
|
data/sig/debug_jruby.rbs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DEBUG_JRUBY: bool
|
data/sig/debugging.rbs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
DEBUGGING: bool
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
RUN_COVERAGE: bool
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
module VersionGem
|
|
2
|
+
module Api
|
|
3
|
+
# Internal memoized version string segments
|
|
4
|
+
@_to_a: Array[String]
|
|
5
|
+
|
|
6
|
+
# Memoized components
|
|
7
|
+
@major: Integer
|
|
8
|
+
@minor: Integer
|
|
9
|
+
@patch: Integer
|
|
10
|
+
@pre: String?
|
|
11
|
+
@to_a: Array[Integer | String | nil]
|
|
12
|
+
@to_h: Hash[Symbol, (Integer | String | nil)]
|
|
13
|
+
|
|
14
|
+
# Public API
|
|
15
|
+
def to_s: () -> String
|
|
16
|
+
def major: () -> Integer
|
|
17
|
+
def minor: () -> Integer
|
|
18
|
+
def patch: () -> Integer
|
|
19
|
+
def pre: () -> String?
|
|
20
|
+
def to_a: () -> Array[Integer | String | nil]
|
|
21
|
+
def to_h: () -> Hash[Symbol, (Integer | String | nil)]
|
|
22
|
+
|
|
23
|
+
private
|
|
24
|
+
|
|
25
|
+
def _to_a: () -> Array[String]
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
module VersionGem
|
|
2
|
+
module Epoch
|
|
3
|
+
EPOCH_SIZE: Integer
|
|
4
|
+
|
|
5
|
+
# Hook used when this module is extended
|
|
6
|
+
def self.extended: (untyped) -> void
|
|
7
|
+
|
|
8
|
+
module OverloadApiForEpoch
|
|
9
|
+
# The epoch component (derived)
|
|
10
|
+
def epoch: () -> Integer
|
|
11
|
+
|
|
12
|
+
# Override of Api#major returning the derived major component
|
|
13
|
+
def major: () -> Integer
|
|
14
|
+
|
|
15
|
+
# Hash representation including epoch
|
|
16
|
+
def to_h: () -> Hash[Symbol, (Integer | String | nil)]
|
|
17
|
+
|
|
18
|
+
# Array of components [epoch, major, minor, patch, pre]
|
|
19
|
+
def to_a: () -> Array[Integer | String | nil]
|
|
20
|
+
|
|
21
|
+
private
|
|
22
|
+
|
|
23
|
+
def _major: () -> Integer
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
module VersionGem
|
|
2
|
+
module Ruby
|
|
3
|
+
RUBY_VER: ::Gem::Version
|
|
4
|
+
|
|
5
|
+
# Check if the current Ruby version is >= given version for the engine
|
|
6
|
+
def self.gte_minimum_version?: (String, ?String) -> bool
|
|
7
|
+
|
|
8
|
+
# Check if the current Ruby MAJOR.MINOR equals the given values for the engine
|
|
9
|
+
def self.actual_minor_version?: ((Integer | String), (Integer | String), ?String) -> bool
|
|
10
|
+
end
|
|
11
|
+
end
|
data/sig/version_gem.rbs
ADDED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
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.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Peter Boling
|
|
8
|
-
|
|
7
|
+
- Peter H. Boling
|
|
8
|
+
- Aboling0
|
|
9
|
+
bindir: exe
|
|
9
10
|
cert_chain:
|
|
10
11
|
- |
|
|
11
12
|
-----BEGIN CERTIFICATE-----
|
|
@@ -35,36 +36,42 @@ cert_chain:
|
|
|
35
36
|
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
|
36
37
|
L9nRqA==
|
|
37
38
|
-----END CERTIFICATE-----
|
|
38
|
-
date:
|
|
39
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
39
40
|
dependencies:
|
|
40
41
|
- !ruby/object:Gem::Dependency
|
|
41
|
-
name:
|
|
42
|
+
name: kettle-dev
|
|
42
43
|
requirement: !ruby/object:Gem::Requirement
|
|
43
44
|
requirements:
|
|
44
45
|
- - "~>"
|
|
45
46
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '
|
|
47
|
+
version: '2.0'
|
|
48
|
+
- - ">="
|
|
49
|
+
- !ruby/object:Gem::Version
|
|
50
|
+
version: 2.0.7
|
|
47
51
|
type: :development
|
|
48
52
|
prerelease: false
|
|
49
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
50
54
|
requirements:
|
|
51
55
|
- - "~>"
|
|
52
56
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: '
|
|
57
|
+
version: '2.0'
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: 2.0.7
|
|
54
61
|
- !ruby/object:Gem::Dependency
|
|
55
|
-
name:
|
|
62
|
+
name: bundler-audit
|
|
56
63
|
requirement: !ruby/object:Gem::Requirement
|
|
57
64
|
requirements:
|
|
58
65
|
- - "~>"
|
|
59
66
|
- !ruby/object:Gem::Version
|
|
60
|
-
version:
|
|
67
|
+
version: 0.9.3
|
|
61
68
|
type: :development
|
|
62
69
|
prerelease: false
|
|
63
70
|
version_requirements: !ruby/object:Gem::Requirement
|
|
64
71
|
requirements:
|
|
65
72
|
- - "~>"
|
|
66
73
|
- !ruby/object:Gem::Version
|
|
67
|
-
version:
|
|
74
|
+
version: 0.9.3
|
|
68
75
|
- !ruby/object:Gem::Dependency
|
|
69
76
|
name: rake
|
|
70
77
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -79,6 +86,100 @@ dependencies:
|
|
|
79
86
|
- - "~>"
|
|
80
87
|
- !ruby/object:Gem::Version
|
|
81
88
|
version: '13.0'
|
|
89
|
+
- !ruby/object:Gem::Dependency
|
|
90
|
+
name: require_bench
|
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - "~>"
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '1.0'
|
|
96
|
+
- - ">="
|
|
97
|
+
- !ruby/object:Gem::Version
|
|
98
|
+
version: 1.0.4
|
|
99
|
+
type: :development
|
|
100
|
+
prerelease: false
|
|
101
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
102
|
+
requirements:
|
|
103
|
+
- - "~>"
|
|
104
|
+
- !ruby/object:Gem::Version
|
|
105
|
+
version: '1.0'
|
|
106
|
+
- - ">="
|
|
107
|
+
- !ruby/object:Gem::Version
|
|
108
|
+
version: 1.0.4
|
|
109
|
+
- !ruby/object:Gem::Dependency
|
|
110
|
+
name: appraisal2
|
|
111
|
+
requirement: !ruby/object:Gem::Requirement
|
|
112
|
+
requirements:
|
|
113
|
+
- - "~>"
|
|
114
|
+
- !ruby/object:Gem::Version
|
|
115
|
+
version: '3.0'
|
|
116
|
+
- - ">="
|
|
117
|
+
- !ruby/object:Gem::Version
|
|
118
|
+
version: 3.0.6
|
|
119
|
+
type: :development
|
|
120
|
+
prerelease: false
|
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
122
|
+
requirements:
|
|
123
|
+
- - "~>"
|
|
124
|
+
- !ruby/object:Gem::Version
|
|
125
|
+
version: '3.0'
|
|
126
|
+
- - ">="
|
|
127
|
+
- !ruby/object:Gem::Version
|
|
128
|
+
version: 3.0.6
|
|
129
|
+
- !ruby/object:Gem::Dependency
|
|
130
|
+
name: kettle-test
|
|
131
|
+
requirement: !ruby/object:Gem::Requirement
|
|
132
|
+
requirements:
|
|
133
|
+
- - "~>"
|
|
134
|
+
- !ruby/object:Gem::Version
|
|
135
|
+
version: '2.0'
|
|
136
|
+
- - ">="
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: 2.0.3
|
|
139
|
+
type: :development
|
|
140
|
+
prerelease: false
|
|
141
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - "~>"
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '2.0'
|
|
146
|
+
- - ">="
|
|
147
|
+
- !ruby/object:Gem::Version
|
|
148
|
+
version: 2.0.3
|
|
149
|
+
- !ruby/object:Gem::Dependency
|
|
150
|
+
name: turbo_tests2
|
|
151
|
+
requirement: !ruby/object:Gem::Requirement
|
|
152
|
+
requirements:
|
|
153
|
+
- - "~>"
|
|
154
|
+
- !ruby/object:Gem::Version
|
|
155
|
+
version: '3.1'
|
|
156
|
+
- - ">="
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: 3.1.1
|
|
159
|
+
type: :development
|
|
160
|
+
prerelease: false
|
|
161
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
162
|
+
requirements:
|
|
163
|
+
- - "~>"
|
|
164
|
+
- !ruby/object:Gem::Version
|
|
165
|
+
version: '3.1'
|
|
166
|
+
- - ">="
|
|
167
|
+
- !ruby/object:Gem::Version
|
|
168
|
+
version: 3.1.1
|
|
169
|
+
- !ruby/object:Gem::Dependency
|
|
170
|
+
name: ruby-progressbar
|
|
171
|
+
requirement: !ruby/object:Gem::Requirement
|
|
172
|
+
requirements:
|
|
173
|
+
- - "~>"
|
|
174
|
+
- !ruby/object:Gem::Version
|
|
175
|
+
version: '1.13'
|
|
176
|
+
type: :development
|
|
177
|
+
prerelease: false
|
|
178
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
179
|
+
requirements:
|
|
180
|
+
- - "~>"
|
|
181
|
+
- !ruby/object:Gem::Version
|
|
182
|
+
version: '1.13'
|
|
82
183
|
- !ruby/object:Gem::Dependency
|
|
83
184
|
name: stone_checksums
|
|
84
185
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -86,6 +187,9 @@ dependencies:
|
|
|
86
187
|
- - "~>"
|
|
87
188
|
- !ruby/object:Gem::Version
|
|
88
189
|
version: '1.0'
|
|
190
|
+
- - ">="
|
|
191
|
+
- !ruby/object:Gem::Version
|
|
192
|
+
version: 1.0.3
|
|
89
193
|
type: :development
|
|
90
194
|
prerelease: false
|
|
91
195
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -93,26 +197,76 @@ dependencies:
|
|
|
93
197
|
- - "~>"
|
|
94
198
|
- !ruby/object:Gem::Version
|
|
95
199
|
version: '1.0'
|
|
96
|
-
|
|
200
|
+
- - ">="
|
|
201
|
+
- !ruby/object:Gem::Version
|
|
202
|
+
version: 1.0.3
|
|
203
|
+
- !ruby/object:Gem::Dependency
|
|
204
|
+
name: gitmoji-regex
|
|
205
|
+
requirement: !ruby/object:Gem::Requirement
|
|
206
|
+
requirements:
|
|
207
|
+
- - "~>"
|
|
208
|
+
- !ruby/object:Gem::Version
|
|
209
|
+
version: '2.0'
|
|
210
|
+
- - ">="
|
|
211
|
+
- !ruby/object:Gem::Version
|
|
212
|
+
version: 2.0.1
|
|
213
|
+
type: :development
|
|
214
|
+
prerelease: false
|
|
215
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
216
|
+
requirements:
|
|
217
|
+
- - "~>"
|
|
218
|
+
- !ruby/object:Gem::Version
|
|
219
|
+
version: '2.0'
|
|
220
|
+
- - ">="
|
|
221
|
+
- !ruby/object:Gem::Version
|
|
222
|
+
version: 2.0.1
|
|
223
|
+
- !ruby/object:Gem::Dependency
|
|
224
|
+
name: rspec-pending_for
|
|
225
|
+
requirement: !ruby/object:Gem::Requirement
|
|
226
|
+
requirements:
|
|
227
|
+
- - "~>"
|
|
228
|
+
- !ruby/object:Gem::Version
|
|
229
|
+
version: '0.0'
|
|
230
|
+
- - ">="
|
|
231
|
+
- !ruby/object:Gem::Version
|
|
232
|
+
version: 0.0.17
|
|
233
|
+
type: :development
|
|
234
|
+
prerelease: false
|
|
235
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
236
|
+
requirements:
|
|
237
|
+
- - "~>"
|
|
238
|
+
- !ruby/object:Gem::Version
|
|
239
|
+
version: '0.0'
|
|
240
|
+
- - ">="
|
|
241
|
+
- !ruby/object:Gem::Version
|
|
242
|
+
version: 0.0.17
|
|
243
|
+
description: "\U0001F372 Versions are good. Versions are cool. Versions will win."
|
|
97
244
|
email:
|
|
98
|
-
-
|
|
245
|
+
- floss@galtzo.com
|
|
99
246
|
- oauth-ruby@googlegroups.com
|
|
100
247
|
executables: []
|
|
101
248
|
extensions: []
|
|
102
249
|
extra_rdoc_files:
|
|
103
250
|
- CHANGELOG.md
|
|
251
|
+
- CITATION.cff
|
|
104
252
|
- CODE_OF_CONDUCT.md
|
|
105
253
|
- CONTRIBUTING.md
|
|
106
|
-
-
|
|
254
|
+
- FUNDING.md
|
|
255
|
+
- LICENSE.md
|
|
107
256
|
- README.md
|
|
257
|
+
- RUBOCOP.md
|
|
108
258
|
- SECURITY.md
|
|
109
259
|
files:
|
|
110
260
|
- CHANGELOG.md
|
|
261
|
+
- CITATION.cff
|
|
111
262
|
- CODE_OF_CONDUCT.md
|
|
112
263
|
- CONTRIBUTING.md
|
|
113
|
-
-
|
|
264
|
+
- FUNDING.md
|
|
265
|
+
- LICENSE.md
|
|
114
266
|
- README.md
|
|
267
|
+
- RUBOCOP.md
|
|
115
268
|
- SECURITY.md
|
|
269
|
+
- certs/pboling.pem
|
|
116
270
|
- lib/version_gem.rb
|
|
117
271
|
- lib/version_gem/api.rb
|
|
118
272
|
- lib/version_gem/basic.rb
|
|
@@ -121,24 +275,40 @@ files:
|
|
|
121
275
|
- lib/version_gem/rspec.rb
|
|
122
276
|
- lib/version_gem/ruby.rb
|
|
123
277
|
- lib/version_gem/version.rb
|
|
124
|
-
|
|
278
|
+
- sig/all_formatters.rbs
|
|
279
|
+
- sig/debug.rbs
|
|
280
|
+
- sig/debug_ide.rbs
|
|
281
|
+
- sig/debug_jruby.rbs
|
|
282
|
+
- sig/debugging.rbs
|
|
283
|
+
- sig/run_coverage.rbs
|
|
284
|
+
- sig/version_gem.rbs
|
|
285
|
+
- sig/version_gem/api.rbs
|
|
286
|
+
- sig/version_gem/basic.rbs
|
|
287
|
+
- sig/version_gem/epoch.rbs
|
|
288
|
+
- sig/version_gem/error.rbs
|
|
289
|
+
- sig/version_gem/ruby.rbs
|
|
290
|
+
- sig/version_gem/version.rbs
|
|
291
|
+
homepage: https://github.com/ruby-oauth/version_gem
|
|
125
292
|
licenses:
|
|
126
293
|
- MIT
|
|
127
294
|
metadata:
|
|
128
|
-
homepage_uri: https://
|
|
129
|
-
source_code_uri: https://
|
|
130
|
-
changelog_uri: https://
|
|
131
|
-
bug_tracker_uri: https://
|
|
132
|
-
documentation_uri: https://www.rubydoc.info/gems/version_gem/1.1.
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
295
|
+
homepage_uri: https://version-gem.galtzo.com
|
|
296
|
+
source_code_uri: https://github.com/ruby-oauth/version_gem/tree/v1.1.10
|
|
297
|
+
changelog_uri: https://github.com/ruby-oauth/version_gem/blob/v1.1.10/CHANGELOG.md
|
|
298
|
+
bug_tracker_uri: https://github.com/ruby-oauth/version_gem/issues
|
|
299
|
+
documentation_uri: https://www.rubydoc.info/gems/version_gem/1.1.10
|
|
300
|
+
funding_uri: https://github.com/sponsors/pboling
|
|
301
|
+
wiki_uri: https://github.com/ruby-oauth/version_gem/wiki
|
|
302
|
+
news_uri: https://www.railsbling.com/tags/version_gem
|
|
303
|
+
discord_uri: https://discord.gg/3qme4XHNKN
|
|
136
304
|
rubygems_mfa_required: 'true'
|
|
137
305
|
rdoc_options:
|
|
138
306
|
- "--title"
|
|
139
|
-
- version_gem - Enhance your VERSION! Sugar for Version modules.
|
|
307
|
+
- "version_gem - \U0001F372 Enhance your VERSION! Sugar for Version modules."
|
|
140
308
|
- "--main"
|
|
141
309
|
- README.md
|
|
310
|
+
- "--exclude"
|
|
311
|
+
- "^sig/"
|
|
142
312
|
- "--line-numbers"
|
|
143
313
|
- "--inline-source"
|
|
144
314
|
- "--quiet"
|
|
@@ -148,14 +318,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
148
318
|
requirements:
|
|
149
319
|
- - ">="
|
|
150
320
|
- !ruby/object:Gem::Version
|
|
151
|
-
version:
|
|
321
|
+
version: 2.2.0
|
|
152
322
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
153
323
|
requirements:
|
|
154
324
|
- - ">="
|
|
155
325
|
- !ruby/object:Gem::Version
|
|
156
326
|
version: '0'
|
|
157
327
|
requirements: []
|
|
158
|
-
rubygems_version:
|
|
328
|
+
rubygems_version: 4.0.10
|
|
159
329
|
specification_version: 4
|
|
160
|
-
summary: Enhance your VERSION! Sugar for Version modules.
|
|
330
|
+
summary: "\U0001F372 Enhance your VERSION! Sugar for Version modules."
|
|
161
331
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|
data/LICENSE.txt
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2022 - 2025 Peter Boling
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
THE SOFTWARE.
|