snaky_hash 2.0.3 → 2.0.7
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 +127 -3
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +24 -23
- data/CONTRIBUTING.md +201 -65
- data/FUNDING.md +70 -0
- data/LICENSE.md +10 -0
- data/{LICENSE.txt → MIT.md} +1 -1
- data/README.md +361 -297
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +11 -15
- data/certs/pboling.pem +27 -0
- data/lib/snaky_hash/serializer.rb +7 -7
- data/lib/snaky_hash/snake.rb +2 -2
- data/lib/snaky_hash/version.rb +2 -7
- data/sig/snaky_hash/version.rbs +6 -0
- data/sig/snaky_hash.rbs +3 -0
- data.tar.gz.sig +0 -0
- metadata +156 -50
- metadata.gz.sig +0 -0
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/SECURITY.md
CHANGED
|
@@ -2,24 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## Supported Versions
|
|
4
4
|
|
|
5
|
-
| Version
|
|
6
|
-
|
|
7
|
-
| 2.0.
|
|
8
|
-
| 1.0.x | | | |
|
|
5
|
+
| Version | Supported |
|
|
6
|
+
|----------|-----------|
|
|
7
|
+
| 2.0.latest | ✅ |
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
## Security contact information
|
|
11
10
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## Reporting a Vulnerability
|
|
15
|
-
|
|
16
|
-
To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security).
|
|
11
|
+
To report a security vulnerability, please use the
|
|
12
|
+
[Tidelift security contact](https://tidelift.com/security).
|
|
17
13
|
Tidelift will coordinate the fix and disclosure.
|
|
18
14
|
|
|
19
|
-
##
|
|
20
|
-
|
|
21
|
-
Available as part of the Tidelift Subscription.
|
|
15
|
+
## Additional Support
|
|
22
16
|
|
|
23
|
-
|
|
17
|
+
If you are interested in support for versions older than the latest release,
|
|
18
|
+
please consider sponsoring the project / maintainer @ https://liberapay.com/pboling/donate,
|
|
19
|
+
or find other sponsorship links in the [README].
|
|
24
20
|
|
|
25
|
-
[
|
|
21
|
+
[README]: README.md
|
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-----
|
|
@@ -22,12 +22,12 @@ module SnakyHash
|
|
|
22
22
|
extended_module = Modulizer.to_extended_mod
|
|
23
23
|
base.extend(extended_module)
|
|
24
24
|
base.include(ConvenienceInstanceMethods)
|
|
25
|
-
# :
|
|
25
|
+
# simplecov:disable
|
|
26
26
|
# This will be run in CI on Ruby 2.3, but we only collect coverage from current Ruby
|
|
27
|
-
unless base.
|
|
27
|
+
unless base.method_defined?(:transform_values)
|
|
28
28
|
base.include(BackportedInstanceMethods)
|
|
29
29
|
end
|
|
30
|
-
# :
|
|
30
|
+
# simplecov:enable
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
@@ -87,7 +87,7 @@ module SnakyHash
|
|
|
87
87
|
|
|
88
88
|
# Provides backported methods for older Ruby versions
|
|
89
89
|
module BackportedInstanceMethods
|
|
90
|
-
# :
|
|
90
|
+
# simplecov:disable
|
|
91
91
|
# Transforms values of a hash using the given block
|
|
92
92
|
#
|
|
93
93
|
# @yield [Object] block to transform each value
|
|
@@ -105,7 +105,7 @@ module SnakyHash
|
|
|
105
105
|
end
|
|
106
106
|
result
|
|
107
107
|
end
|
|
108
|
-
# :
|
|
108
|
+
# simplecov:enable
|
|
109
109
|
end
|
|
110
110
|
|
|
111
111
|
# Provides convenient instance methods for serialization
|
|
@@ -189,11 +189,11 @@ module SnakyHash
|
|
|
189
189
|
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.7")
|
|
190
190
|
res
|
|
191
191
|
else
|
|
192
|
-
# :
|
|
192
|
+
# simplecov:disable
|
|
193
193
|
# In Ruby <= 2.6 Hash#transform_values returned a new vanilla Hash,
|
|
194
194
|
# rather than a hash of the class being transformed.
|
|
195
195
|
self[res]
|
|
196
|
-
# :
|
|
196
|
+
# simplecov:enable
|
|
197
197
|
end
|
|
198
198
|
end
|
|
199
199
|
|
data/lib/snaky_hash/snake.rb
CHANGED
|
@@ -56,7 +56,7 @@ module SnakyHash
|
|
|
56
56
|
def to_mod(key_type)
|
|
57
57
|
Module.new do
|
|
58
58
|
case key_type
|
|
59
|
-
when :string
|
|
59
|
+
when :string
|
|
60
60
|
# Converts a key to a string if it is symbolizable, after underscoring
|
|
61
61
|
#
|
|
62
62
|
# @note checks for to_sym instead of to_s, because nearly everything responds_to?(:to_s)
|
|
@@ -67,7 +67,7 @@ module SnakyHash
|
|
|
67
67
|
# @param key [Object] the key to convert
|
|
68
68
|
# @return [String, Object] the converted key or original if not convertible
|
|
69
69
|
define_method(:convert_key) { |key| key.respond_to?(:to_sym) ? underscore_string(key.to_s) : key }
|
|
70
|
-
when :symbol
|
|
70
|
+
when :symbol
|
|
71
71
|
# Converts a key to a symbol if possible, after underscoring
|
|
72
72
|
#
|
|
73
73
|
# @param key [Object] the key to convert
|
data/lib/snaky_hash/version.rb
CHANGED
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module SnakyHash
|
|
4
|
-
# Defines the version information for SnakyHash
|
|
5
|
-
#
|
|
6
|
-
# @api public
|
|
7
4
|
module Version
|
|
8
|
-
|
|
9
|
-
#
|
|
10
|
-
# @return [String] the current version in semantic versioning format
|
|
11
|
-
VERSION = "2.0.3"
|
|
5
|
+
VERSION = "2.0.7"
|
|
12
6
|
end
|
|
7
|
+
VERSION = Version::VERSION # Traditional Constant Location
|
|
13
8
|
end
|
data/sig/snaky_hash.rbs
ADDED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: snaky_hash
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Peter Boling
|
|
7
|
+
- Peter H. Boling
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain:
|
|
10
10
|
- |
|
|
@@ -35,7 +35,7 @@ cert_chain:
|
|
|
35
35
|
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
|
36
36
|
L9nRqA==
|
|
37
37
|
-----END CERTIFICATE-----
|
|
38
|
-
date:
|
|
38
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
39
39
|
dependencies:
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: hashie
|
|
@@ -61,42 +61,56 @@ dependencies:
|
|
|
61
61
|
name: version_gem
|
|
62
62
|
requirement: !ruby/object:Gem::Requirement
|
|
63
63
|
requirements:
|
|
64
|
-
- - "
|
|
64
|
+
- - "~>"
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
|
-
version: 1.1
|
|
67
|
-
- - "
|
|
66
|
+
version: '1.1'
|
|
67
|
+
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version:
|
|
69
|
+
version: 1.1.14
|
|
70
70
|
type: :runtime
|
|
71
71
|
prerelease: false
|
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
|
-
- - "
|
|
74
|
+
- - "~>"
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
|
-
version: 1.1
|
|
77
|
-
- - "
|
|
76
|
+
version: '1.1'
|
|
77
|
+
- - ">="
|
|
78
78
|
- !ruby/object:Gem::Version
|
|
79
|
-
version:
|
|
79
|
+
version: 1.1.14
|
|
80
80
|
- !ruby/object:Gem::Dependency
|
|
81
|
-
name:
|
|
81
|
+
name: kettle-dev
|
|
82
82
|
requirement: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
|
84
84
|
- - "~>"
|
|
85
85
|
- !ruby/object:Gem::Version
|
|
86
|
-
version: '3
|
|
86
|
+
version: '2.3'
|
|
87
87
|
- - ">="
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: 3.
|
|
89
|
+
version: 2.3.3
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '3
|
|
96
|
+
version: '2.3'
|
|
97
97
|
- - ">="
|
|
98
98
|
- !ruby/object:Gem::Version
|
|
99
|
-
version: 3.
|
|
99
|
+
version: 2.3.3
|
|
100
|
+
- !ruby/object:Gem::Dependency
|
|
101
|
+
name: bundler-audit
|
|
102
|
+
requirement: !ruby/object:Gem::Requirement
|
|
103
|
+
requirements:
|
|
104
|
+
- - "~>"
|
|
105
|
+
- !ruby/object:Gem::Version
|
|
106
|
+
version: 0.9.3
|
|
107
|
+
type: :development
|
|
108
|
+
prerelease: false
|
|
109
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
110
|
+
requirements:
|
|
111
|
+
- - "~>"
|
|
112
|
+
- !ruby/object:Gem::Version
|
|
113
|
+
version: 0.9.3
|
|
100
114
|
- !ruby/object:Gem::Dependency
|
|
101
115
|
name: rake
|
|
102
116
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -112,21 +126,101 @@ dependencies:
|
|
|
112
126
|
- !ruby/object:Gem::Version
|
|
113
127
|
version: '13.0'
|
|
114
128
|
- !ruby/object:Gem::Dependency
|
|
115
|
-
name:
|
|
129
|
+
name: require_bench
|
|
130
|
+
requirement: !ruby/object:Gem::Requirement
|
|
131
|
+
requirements:
|
|
132
|
+
- - "~>"
|
|
133
|
+
- !ruby/object:Gem::Version
|
|
134
|
+
version: '1.0'
|
|
135
|
+
- - ">="
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: 1.0.4
|
|
138
|
+
type: :development
|
|
139
|
+
prerelease: false
|
|
140
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - "~>"
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '1.0'
|
|
145
|
+
- - ">="
|
|
146
|
+
- !ruby/object:Gem::Version
|
|
147
|
+
version: 1.0.4
|
|
148
|
+
- !ruby/object:Gem::Dependency
|
|
149
|
+
name: appraisal2
|
|
116
150
|
requirement: !ruby/object:Gem::Requirement
|
|
117
151
|
requirements:
|
|
118
152
|
- - "~>"
|
|
119
153
|
- !ruby/object:Gem::Version
|
|
120
|
-
version: '3.
|
|
154
|
+
version: '3.1'
|
|
155
|
+
- - ">="
|
|
156
|
+
- !ruby/object:Gem::Version
|
|
157
|
+
version: 3.1.4
|
|
121
158
|
type: :development
|
|
122
159
|
prerelease: false
|
|
123
160
|
version_requirements: !ruby/object:Gem::Requirement
|
|
124
161
|
requirements:
|
|
125
162
|
- - "~>"
|
|
126
163
|
- !ruby/object:Gem::Version
|
|
127
|
-
version: '3.
|
|
164
|
+
version: '3.1'
|
|
165
|
+
- - ">="
|
|
166
|
+
- !ruby/object:Gem::Version
|
|
167
|
+
version: 3.1.4
|
|
128
168
|
- !ruby/object:Gem::Dependency
|
|
129
|
-
name:
|
|
169
|
+
name: kettle-test
|
|
170
|
+
requirement: !ruby/object:Gem::Requirement
|
|
171
|
+
requirements:
|
|
172
|
+
- - "~>"
|
|
173
|
+
- !ruby/object:Gem::Version
|
|
174
|
+
version: '2.0'
|
|
175
|
+
- - ">="
|
|
176
|
+
- !ruby/object:Gem::Version
|
|
177
|
+
version: 2.0.10
|
|
178
|
+
type: :development
|
|
179
|
+
prerelease: false
|
|
180
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
181
|
+
requirements:
|
|
182
|
+
- - "~>"
|
|
183
|
+
- !ruby/object:Gem::Version
|
|
184
|
+
version: '2.0'
|
|
185
|
+
- - ">="
|
|
186
|
+
- !ruby/object:Gem::Version
|
|
187
|
+
version: 2.0.10
|
|
188
|
+
- !ruby/object:Gem::Dependency
|
|
189
|
+
name: turbo_tests2
|
|
190
|
+
requirement: !ruby/object:Gem::Requirement
|
|
191
|
+
requirements:
|
|
192
|
+
- - "~>"
|
|
193
|
+
- !ruby/object:Gem::Version
|
|
194
|
+
version: '3.1'
|
|
195
|
+
- - ">="
|
|
196
|
+
- !ruby/object:Gem::Version
|
|
197
|
+
version: 3.1.7
|
|
198
|
+
type: :development
|
|
199
|
+
prerelease: false
|
|
200
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
201
|
+
requirements:
|
|
202
|
+
- - "~>"
|
|
203
|
+
- !ruby/object:Gem::Version
|
|
204
|
+
version: '3.1'
|
|
205
|
+
- - ">="
|
|
206
|
+
- !ruby/object:Gem::Version
|
|
207
|
+
version: 3.1.7
|
|
208
|
+
- !ruby/object:Gem::Dependency
|
|
209
|
+
name: ruby-progressbar
|
|
210
|
+
requirement: !ruby/object:Gem::Requirement
|
|
211
|
+
requirements:
|
|
212
|
+
- - "~>"
|
|
213
|
+
- !ruby/object:Gem::Version
|
|
214
|
+
version: '1.13'
|
|
215
|
+
type: :development
|
|
216
|
+
prerelease: false
|
|
217
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
218
|
+
requirements:
|
|
219
|
+
- - "~>"
|
|
220
|
+
- !ruby/object:Gem::Version
|
|
221
|
+
version: '1.13'
|
|
222
|
+
- !ruby/object:Gem::Dependency
|
|
223
|
+
name: stone_checksums
|
|
130
224
|
requirement: !ruby/object:Gem::Requirement
|
|
131
225
|
requirements:
|
|
132
226
|
- - "~>"
|
|
@@ -146,59 +240,72 @@ dependencies:
|
|
|
146
240
|
- !ruby/object:Gem::Version
|
|
147
241
|
version: 1.0.6
|
|
148
242
|
- !ruby/object:Gem::Dependency
|
|
149
|
-
name:
|
|
243
|
+
name: gitmoji-regex
|
|
150
244
|
requirement: !ruby/object:Gem::Requirement
|
|
151
245
|
requirements:
|
|
152
246
|
- - "~>"
|
|
153
247
|
- !ruby/object:Gem::Version
|
|
154
|
-
version: '0
|
|
248
|
+
version: '2.0'
|
|
155
249
|
- - ">="
|
|
156
250
|
- !ruby/object:Gem::Version
|
|
157
|
-
version: 0.
|
|
251
|
+
version: 2.0.4
|
|
158
252
|
type: :development
|
|
159
253
|
prerelease: false
|
|
160
254
|
version_requirements: !ruby/object:Gem::Requirement
|
|
161
255
|
requirements:
|
|
162
256
|
- - "~>"
|
|
163
257
|
- !ruby/object:Gem::Version
|
|
164
|
-
version: '0
|
|
258
|
+
version: '2.0'
|
|
165
259
|
- - ">="
|
|
166
260
|
- !ruby/object:Gem::Version
|
|
167
|
-
version: 0.
|
|
261
|
+
version: 2.0.4
|
|
168
262
|
- !ruby/object:Gem::Dependency
|
|
169
|
-
name:
|
|
263
|
+
name: backports
|
|
170
264
|
requirement: !ruby/object:Gem::Requirement
|
|
171
265
|
requirements:
|
|
172
266
|
- - "~>"
|
|
173
267
|
- !ruby/object:Gem::Version
|
|
174
|
-
version: '
|
|
268
|
+
version: '3.25'
|
|
269
|
+
- - ">="
|
|
270
|
+
- !ruby/object:Gem::Version
|
|
271
|
+
version: 3.25.1
|
|
175
272
|
type: :development
|
|
176
273
|
prerelease: false
|
|
177
274
|
version_requirements: !ruby/object:Gem::Requirement
|
|
178
275
|
requirements:
|
|
179
276
|
- - "~>"
|
|
180
277
|
- !ruby/object:Gem::Version
|
|
181
|
-
version: '
|
|
182
|
-
|
|
278
|
+
version: '3.25'
|
|
279
|
+
- - ">="
|
|
280
|
+
- !ruby/object:Gem::Version
|
|
281
|
+
version: 3.25.1
|
|
282
|
+
description: "\U0001F52E A Hashie::Mash joint to make #snakelife better"
|
|
183
283
|
email:
|
|
184
|
-
-
|
|
185
|
-
- oauth-ruby@googlegroups.com
|
|
284
|
+
- floss@galtzo.com
|
|
186
285
|
executables: []
|
|
187
286
|
extensions: []
|
|
188
287
|
extra_rdoc_files:
|
|
189
288
|
- CHANGELOG.md
|
|
289
|
+
- CITATION.cff
|
|
190
290
|
- CODE_OF_CONDUCT.md
|
|
191
291
|
- CONTRIBUTING.md
|
|
192
|
-
-
|
|
292
|
+
- FUNDING.md
|
|
293
|
+
- LICENSE.md
|
|
193
294
|
- README.md
|
|
295
|
+
- RUBOCOP.md
|
|
194
296
|
- SECURITY.md
|
|
195
297
|
files:
|
|
196
298
|
- CHANGELOG.md
|
|
299
|
+
- CITATION.cff
|
|
197
300
|
- CODE_OF_CONDUCT.md
|
|
198
301
|
- CONTRIBUTING.md
|
|
199
|
-
-
|
|
302
|
+
- FUNDING.md
|
|
303
|
+
- LICENSE.md
|
|
304
|
+
- MIT.md
|
|
200
305
|
- README.md
|
|
306
|
+
- RUBOCOP.md
|
|
201
307
|
- SECURITY.md
|
|
308
|
+
- certs/pboling.pem
|
|
202
309
|
- lib/snaky_hash.rb
|
|
203
310
|
- lib/snaky_hash/extensions.rb
|
|
204
311
|
- lib/snaky_hash/serializer.rb
|
|
@@ -206,30 +313,29 @@ files:
|
|
|
206
313
|
- lib/snaky_hash/string_keyed.rb
|
|
207
314
|
- lib/snaky_hash/symbol_keyed.rb
|
|
208
315
|
- lib/snaky_hash/version.rb
|
|
209
|
-
|
|
316
|
+
- sig/snaky_hash.rbs
|
|
317
|
+
- sig/snaky_hash/version.rbs
|
|
318
|
+
homepage: https://github.com/ruby-oauth/snaky_hash
|
|
210
319
|
licenses:
|
|
211
320
|
- MIT
|
|
212
321
|
metadata:
|
|
213
|
-
homepage_uri: https://snaky-hash.galtzo.com
|
|
214
|
-
source_code_uri: https://github.com/oauth
|
|
215
|
-
changelog_uri: https://
|
|
216
|
-
bug_tracker_uri: https://
|
|
217
|
-
documentation_uri: https://www.rubydoc.info/gems/snaky_hash/2.0.
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
funding_uri: https://liberapay.com/pboling
|
|
322
|
+
homepage_uri: https://snaky-hash.galtzo.com
|
|
323
|
+
source_code_uri: https://github.com/ruby-oauth/snaky_hash/tree/v2.0.7
|
|
324
|
+
changelog_uri: https://github.com/ruby-oauth/snaky_hash/blob/v2.0.7/CHANGELOG.md
|
|
325
|
+
bug_tracker_uri: https://github.com/ruby-oauth/snaky_hash/issues
|
|
326
|
+
documentation_uri: https://www.rubydoc.info/gems/snaky_hash/2.0.7
|
|
327
|
+
funding_uri: https://github.com/sponsors/pboling
|
|
328
|
+
wiki_uri: https://github.com/ruby-oauth/snaky_hash/wiki
|
|
221
329
|
news_uri: https://www.railsbling.com/tags/snaky_hash
|
|
330
|
+
discord_uri: https://discord.gg/3qme4XHNKN
|
|
222
331
|
rubygems_mfa_required: 'true'
|
|
223
332
|
rdoc_options:
|
|
224
333
|
- "--title"
|
|
225
|
-
- snaky_hash - A very snaky hash
|
|
334
|
+
- "snaky_hash - \U0001F52E A very snaky hash"
|
|
226
335
|
- "--main"
|
|
227
|
-
- CHANGELOG.md
|
|
228
|
-
- CODE_OF_CONDUCT.md
|
|
229
|
-
- CONTRIBUTING.md
|
|
230
|
-
- LICENSE.txt
|
|
231
336
|
- README.md
|
|
232
|
-
-
|
|
337
|
+
- "--exclude"
|
|
338
|
+
- "^sig/"
|
|
233
339
|
- "--line-numbers"
|
|
234
340
|
- "--inline-source"
|
|
235
341
|
- "--quiet"
|
|
@@ -246,7 +352,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
246
352
|
- !ruby/object:Gem::Version
|
|
247
353
|
version: '0'
|
|
248
354
|
requirements: []
|
|
249
|
-
rubygems_version:
|
|
355
|
+
rubygems_version: 4.0.10
|
|
250
356
|
specification_version: 4
|
|
251
|
-
summary: A very snaky hash
|
|
357
|
+
summary: "\U0001F52E A very snaky hash"
|
|
252
358
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|