A summary of data about the Ruby ecosystem.

https://github.com/ruby-oauth/snaky_hash

๐Ÿ A Hashie::Mash joint to improve #snake_life for everyone
https://github.com/ruby-oauth/snaky_hash

Keywords

hash hashie ruby rubygem underscore

Keywords from Contributors

version authorization oauth oauth-client oauth-server oauth2 oauth2-client oidc oidc-client feature-flag

Last synced: about 5 hours ago
JSON representation

Repository metadata

๐Ÿ A Hashie::Mash joint to improve #snake_life for everyone

README.md

๐Ÿ”ฎ SnakyHash

Version GitHub tag (latest SemVer) License: MIT Downloads Rank CodeCov Test Coverage Coveralls Test Coverage QLTY Test Coverage QLTY Maintainability CI Heads CI Runtime Dependencies @ HEAD CI Current CI Truffle Ruby CI JRuby Deps Locked Deps Unlocked CI Test Coverage CI Style Apache SkyWalking Eyes License Compatibility Check

if ci_badges.map(&:color).detect { it != "green"} โ˜๏ธ let me know, as I may have missed the discord notification.


if ci_badges.map(&:color).all? { it == "green"} ๐Ÿ‘‡๏ธ send money so I can do more of this. FLOSS maintenance is now my full-time job.

OpenCollective Backers OpenCollective Sponsors Sponsor Me on Github Liberapay Goal Progress Donate on PayPal Buy me a coffee Donate on Polar Donate at ko-fi.com

I've summarized my thoughts in this blog post.

๐ŸŒป Synopsis

๐Ÿ’ก Info you can shake a stick at

Tokens to Remember Gem name Gem namespace
Works with JRuby JRuby 9.2 Compat JRuby 9.3 Compat JRuby 9.4 Compat JRuby current Compat JRuby HEAD Compat
Works with Truffle Ruby Truffle Ruby 22.3 Compat Truffle Ruby 23.0 Compat Truffle Ruby 23.1 Compat Truffle Ruby 24.2 Compat Truffle Ruby 25.0 Compat Truffle Ruby current Compat
Works with MRI Ruby 4 Ruby 4.0 Compat Ruby current Compat Ruby HEAD Compat
Works with MRI Ruby 3 Ruby 3.0 Compat Ruby 3.1 Compat Ruby 3.2 Compat Ruby 3.3 Compat Ruby 3.4 Compat
Works with MRI Ruby 2 Ruby 2.2 Compat Ruby 2.3 Compat Ruby 2.4 Compat Ruby 2.5 Compat Ruby 2.6 Compat Ruby 2.7 Compat
Support & Community Join Me on Daily.dev's RubyFriends Live Chat on Discord Get help from me on Upwork Get help from me on Codementor
Source Source on GitLab.com Source on CodeBerg.org Source on Github.com The best SHA: dQw4w9WgXcQ!
Documentation Current release on RubyDoc.info YARD on Galtzo.com Maintainer Blog GitLab Wiki GitHub Wiki
Compliance License: MIT Apache license compatibility: Category A ๐Ÿ“„ilo-declaration-img Security Policy Contributor Covenant 2.1 SemVer 2.0.0
Style Enforced Code Style Linter Keep-A-Changelog 1.0.0 Gitmoji Commits Compatibility appraised by: appraisal2
Maintainer ๐ŸŽ–๏ธ Follow Me on LinkedIn Follow Me on Ruby.Social Follow Me on Bluesky Contact Maintainer My technical writing
... ๐Ÿ’– Find Me on WellFound: Find Me on CrunchBase My LinkTree More About Me ๐ŸงŠ ๐Ÿ™ ๐Ÿ›– ๐Ÿงช

Compatibility

Compatible with MRI Ruby 2.2.0+, and concordant releases of JRuby, and TruffleRuby.
CI workflows and Appraisals are generated for MRI Ruby 2.4+.
This test floor is configured by ruby.test_minimum in .kettle-jem.yml and
may be higher than the gem's runtime compatibility floor when legacy Rubies are
not practical for the current toolchain.

๐Ÿšš Amazing test matrix was brought to you by ๐Ÿ”Ž appraisal2 ๐Ÿ”Ž and the color ๐Ÿ’š green ๐Ÿ’š
๐Ÿ‘Ÿ Check it out! โœจ github.com/appraisal-rb/appraisal2 โœจ

Federated DVCS

Federated DVCS Repository Status Issues PRs Wiki CI Discussions
๐Ÿงช ruby-oauth/snaky_hash on GitLab The Truth ๐Ÿ’š ๐Ÿ’š ๐Ÿ’š ๐Ÿญ Tiny Matrix โž–
๐ŸงŠ ruby-oauth/snaky_hash on CodeBerg An Ethical Mirror (Donate) ๐Ÿ’š ๐Ÿ’š โž– โญ•๏ธ No Matrix โž–
๐Ÿ™ ruby-oauth/snaky_hash on GitHub Another Mirror ๐Ÿ’š ๐Ÿ’š ๐Ÿ’š ๐Ÿ’ฏ Full Matrix ๐Ÿ’š
๐ŸŽฎ๏ธ Discord Server Live Chat on Discord Let's talk about this library!

Enterprise Support Tidelift

Available as part of the Tidelift Subscription.

The maintainers of this and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact packages you use.

Get help from me on Tidelift

  • ๐Ÿ’กSubscribe for support guarantees covering all your FLOSS dependencies
  • ๐Ÿ’กTidelift is part of Sonar
  • ๐Ÿ’กTidelift pays maintainers to maintain the software you depend on!๐Ÿ“Š@Pointy Haired Boss: An enterprise support subscription is "never gonna let you down", and supports open source maintainers

Alternatively:

  • Live Chat on Discord
  • Get help from me on Upwork
  • Get help from me on Codementor

โœจ Installation

Install the gem and add to the application's Gemfile by executing:

bundle add snaky_hash

If bundler is not being used to manage dependencies, install the gem by executing:

gem install snaky_hash

โš™๏ธ Configuration

๐Ÿ”ง Basic Usage

class MySnakedHash < Hashie::Mash
  include SnakyHash::Snake.new(key_type: :string) # or :symbol
end

snake = MySnakedHash.new(:a => "a", "b" => "b", 2 => 2, "VeryFineHat" => "Feathers")
snake.a # => 'a'
snake.b # => 'b'
snake[2] # => 2
snake["2"] # => nil, note that this gem only affects string / symbol keys.
snake.very_fine_hat # => 'Feathers'
snake[:very_fine_hat] # => 'Feathers'
snake["very_fine_hat"] # => 'Feathers'

Note above that you can access the values via the string, or symbol.
The key_type determines how the key is actually stored, but the hash acts as "indifferent".
Note also that keys which do not respond to to_sym, because they don't have a natural conversion to a Symbol,
are left as-is.

Serialization

class MySerializedSnakedHash < Hashie::Mash
  include SnakyHash::Snake.new(
    key_type: :symbol, # default :string
    serializer: true   # default: false
  )
end

snake = MySerializedSnakedHash.new(:a => "a", "b" => "b", 2 => 2, "VeryFineHat" => "Feathers") # => {a: "a", b: "b", 2 => 2, very_fine_hat: "Feathers"}
dump = MySerializedSnakedHash.dump(snake) # => "{\"a\":\"a\",\"b\":\"b\",\"2\":2,\"very_fine_hat\":\"Feathers\"}"
hydrated = MySerializedSnakedHash.load(dump) # => {a: "a", b: "b", "2": 2, very_fine_hat: "Feathers"}
hydrated.class # => MySerializedSnakedHash
hydrated.a # => 'a'
hydrated.b # => 'b'
hydrated[2] # => nil # NOTE: this is the opposite of snake[2] => 2
hydrated["2"] # => 2 # NOTE: this is the opposite of snake["2"] => nil
hydrated.very_fine_hat # => 'Feathers'
hydrated[:very_fine_hat] # => 'Feathers'
hydrated["very_fine_hat"] # => 'Feathers'

Note that the key VeryFineHat changed to very_fine_hat.
That is indeed the point of this library, so not a bug.

Note that the key 2 changed to "2" (because JSON keys are strings).
When the JSON dump was reloaded it did not know to restore it as 2 instead of "2".
This is also not a bug, though if you need different behavior, there is a solution in the next section.

Extensions

You can write your own arbitrary extensions:

  • "Hash Load" extensions operate on the hash and nested hashes
    • use ::load_hash_extensions.add(:extension_name) { |hash| }
    • since v2.0.2, bugs fixed in v2.0.3
  • "Value Load" extensions operate on the values, and nested hashes' values, if any
    • use ::load_value_extensions.add(:extension_name) { |value| }
    • since v2.0.2, bugs fixed in v2.0.3
  • "Hash Dump" extensions operate on the hash and nested hashes
    • use ::dump_hash_extensions.add(:extension_name) { |value| }
    • since v2.0.3
  • "Value Dump" extensions operate on the values, and nested hashes' values, if any
    • use ::dump_value_extensions.add(:extension_name) { |value| }
    • since v2.0.2, bugs fixed in v2.0.3

Example

Let's say I want to really smash up my hash and make it more food-like.

class MyExtSnakedHash < Hashie::Mash
  include SnakyHash::Snake.new(
    key_type: :symbol, # default :string
    serializer: true  # default: false
  )
end

# We could swap all values with indexed apples (obliteraating nested data!)
MyExtSnakedHash.dump_hash_extensions.add(:to_apple) do |value|
  num = 0
  value.transform_values do |_key|
    key = "apple-#{num}"
    num += 1
    key
  end
end

# And then when loading the dump we could convert the yum to pear
MyExtSnakedHash.load_hash_extensions.add(:apple_to_pear) do |value|
  value.transform_keys do |key|
    key.to_s.sub("yum", "pear")
  end
end

# We could swap all index numbers "beet-<number>"
MyExtSnakedHash.dump_value_extensions.add(:to_beet) do |value|
  value.to_s.sub(/(\d+)/) { |match| "beet-#{match[0]}" }
end

# And then when loading the dump we could convert beet to corn
MyExtSnakedHash.load_value_extensions.add(:beet_to_corn) do |value|
  value.to_s.sub("beet", "corn")
end

snake = MyExtSnakedHash.new({"YumBread" => "b", "YumCake" => {"b" => "b"}, "YumBoba" => [1, 2, 3]})
snake # => {yum_bread: "b", yum_cake: {b: "b"}, yum_boba: [1, 2, 3]}
snake.yum_bread # => "b"
snake.yum_cake # => {b: "b"}
snake.yum_boba # => [1, 2, 3]
dump = snake.dump
dump # => "{\"yum_bread\":\"apple-beet-0\",\"yum_cake\":\"apple-beet-1\",\"yum_boba\":\"apple-beet-2\"}"
hydrated = MyExtSnakedHash.load(dump)
hydrated # => {pear_bread: "apple-corn-0", pear_cake: "apple-corn-1", pear_boba: "apple-corn-2"}

See the specs for more examples.

Bad Ideas

I don't recommend using these features... but they exist (for now).

You can still access the original un-snaked camel keys.
And through them you can even use un-snaked camel methods.
But don't.

snake = SnakyHash::StringKeyed["VeryFineHat" => "Feathers"]
snake.key?("VeryFineHat") # => true
snake["VeryFineHat"] # => 'Feathers'
snake.VeryFineHat # => 'Feathers', PLEASE don't do this!!!
snake["VeryFineHat"] = "pop" # Please don't do this... you'll get a warning, and it works (for now), but no guarantees.
# WARN -- : You are setting a key that conflicts with a built-in method MySnakedHash#VeryFineHat defined in MySnakedHash. This can cause unexpected behavior when accessing the key as a property. You can still access the key via the #[] method.
# => "pop"

Since you are reading this, here's what to do instead.

snake.very_fine_hat = "pop" # => 'pop', do this instead!!!
snake.very_fine_hat # => 'pop'
snake[:very_fine_hat] = "moose" # => 'moose', or do this instead!!!
snake.very_fine_hat # => 'moose'
snake["very_fine_hat"] = "cheese" # => 'cheese', or do this instead!!!
snake.very_fine_hat # => 'cheese'

๐Ÿš€ Release Instructions

See CONTRIBUTING.md.

๐Ÿฆท FLOSS Funding

While ruby-oauth tools are free software and will always be, the project would benefit immensely from some funding.
Raising a monthly budget of... "dollars" would make the project more sustainable.

We welcome both individual and corporate sponsors! We also offer a
wide array of funding channels to account for your preferences.
Currently, Open Collective is our preferred funding platform.

If you're working in a company that's making significant use of ruby-oauth tools we'd
appreciate it if you suggest to your company to become a ruby-oauth sponsor.

You can support the development of ruby-oauth tools via
GitHub Sponsors,
Liberapay,
PayPal,
Open Collective
and Tidelift.

๐Ÿ“ NOTE
If doing a sponsorship in the form of donation is problematic for your company from an accounting standpoint, we'd recommend the use of Tidelift, where you can get a support-like subscription instead.

Open Collective for Individuals

Support us with a monthly donation and help us continue our activities. [Become a backer]

NOTE: kettle-readme-backers updates this list every day, automatically.

No backers yet. Be the first!

Open Collective for Organizations

Become a sponsor and get your logo on our README on GitHub with a link to your site. [Become a sponsor]

NOTE: kettle-readme-backers updates this list every day, automatically.

No sponsors yet. Be the first!

Another way to support open-source

Iโ€™m driven by a passion to foster a thriving open-source community โ€“ a space where people can tackle complex problems, no matter how small. Revitalizing libraries that have fallen into disrepair, and building new libraries focused on solving real-world challenges, are my passions. I was recently affected by layoffs, and the tech jobs market is unwelcoming. Iโ€™m reaching out here because your support would significantly aid my efforts to provide for my family, and my farm (11 ๐Ÿ” chickens, 2 ๐Ÿถ dogs, 3 ๐Ÿฐ rabbits, 8 ๐Ÿˆโ€ cats).

If you work at a company that uses my work, please encourage them to support me as a corporate sponsor. My work on gems you use might show up in bundle fund.

Iโ€™m developing a new library, floss_funding, designed to empower open-source developers like myself to get paid for the work we do, in a sustainable way. Please give it a look.

Floss-Funding.dev: ๐Ÿ‘‰๏ธ No network calls. ๐Ÿ‘‰๏ธ No tracking. ๐Ÿ‘‰๏ธ No oversight. ๐Ÿ‘‰๏ธ Minimal crypto hashing. ๐Ÿ’ก Easily disabled nags

OpenCollective Backers OpenCollective Sponsors Sponsor Me on Github Liberapay Goal Progress Donate on PayPal Buy me a coffee Donate on Polar Donate to my FLOSS efforts at ko-fi.com Donate to my FLOSS efforts using Patreon

๐Ÿ” Security

See SECURITY.md.

๐Ÿค Contributing

If you need some ideas of where to help, you could work on adding more code coverage,
or if it is already ๐Ÿ’ฏ (see below) check issues or PRs,
or use the gem and think about how it could be better.

We Keep A Changelog so if you make changes, remember to update it.

See CONTRIBUTING.md for more detailed instructions.

๐Ÿš€ Release Instructions

See CONTRIBUTING.md.

Code Coverage

Coverage Graph

Coveralls Test Coverage

QLTY Test Coverage

๐Ÿช‡ Code of Conduct

Everyone interacting with this project's codebases, issue trackers,
chat rooms and mailing lists agrees to follow the Contributor Covenant 2.1.

๐ŸŒˆ Contributors

Contributors

Made with contributors-img.

Also see GitLab Contributors: https://gitlab.com/ruby-oauth/snaky_hash/-/graphs/main

๐Ÿ“Œ Versioning

This library follows Semantic Versioning 2.0.0 for its public API where practical.
For most applications, prefer the Pessimistic Version Constraint with two digits of precision.

For example:

spec.add_dependency("snaky_hash", "~> 2.0")

Dropping support for a platform can be a breaking change for affected users.
If a release changes supported platforms, it should be called out clearly in the changelog and versioned with that impact in mind.

To get a better understanding of how SemVer is intended to work over a project's lifetime,
read this article from the creator of SemVer:

See CHANGELOG.md for a list of releases.

๐Ÿ“„ License

The gem is available as open source under the terms of
the MIT License: MIT.

ยฉ Copyright

See LICENSE.md for the official copyright notice.

  • Copyright (c) 2022, 2025-2026 Peter H. Boling

๐Ÿค‘ A request for help

Maintainers have teeth and need to pay their dentists.
After getting laid off in an RIF in March, and encountering difficulty finding a new one,
I began spending most of my time building open source tools.
I'm hoping to be able to pay for my kids' health insurance this month,
so if you value the work I am doing, I need your support.
Please consider sponsoring me or the project.

To join the community or get help ๐Ÿ‘‡๏ธ Join the Discord.

Live Chat on Discord

To say "thanks!" โ˜๏ธ Join the Discord or ๐Ÿ‘‡๏ธ send money.

Sponsor ruby-oauth/snaky_hash on Open Source Collective ๐Ÿ’Œ Sponsor me on GitHub Sponsors ๐Ÿ’Œ Sponsor me on Liberapay ๐Ÿ’Œ Donate on PayPal

Please give the project a star โญ โ™ฅ.

Many parts of this project are actively managed by a kettle-jem smart template utilizing StructuredMerge.org merge contracts.

Thanks for RTFM. โ˜บ๏ธ

Field Value
Package snaky_hash
Description ๐Ÿ A Hashie::Mash joint to make #snakelife better
Homepage https://github.com/ruby-oauth/snaky_hash
Source https://github.com/ruby-oauth/snaky_hash/tree/v2.0.5
License MIT
Funding https://github.com/sponsors/pboling, https://issuehunt.io/u/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/ruby-oauth, https://patreon.com/galtzo, https://polar.sh/pboling, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/snaky_hash, https://www.buymeacoffee.com/pboling

Citation (CITATION.cff)

cff-version: 1.2.0
title: "snaky_hash"
message: >-
  If you use this work and you want to cite it,
  then you can use the metadata from this file.
type: software
authors:
  - given-names: "Peter H."
    family-names: "Boling"
    email: "floss@galtzo.com"
    affiliation: "galtzo.com"
    orcid: 'https://orcid.org/0009-0008-8519-441X'
identifiers:
  - type: url
    value: 'https://github.com/ruby-oauth/snaky_hash'
    description: "snaky_hash"
repository-code: 'https://github.com/ruby-oauth/snaky_hash'
abstract: >-
  snaky_hash
license: See license file

Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 2 days ago

Total Commits: 105
Total Committers: 4
Avg Commits per committer: 26.25
Development Distribution Score (DDS): 0.2

Commits in past year: 37
Committers in past year: 4
Avg Commits per committer in past year: 9.25
Development Distribution Score (DDS) in past year: 0.568

Name Email Commits
Peter H. Boling p****g@g****m 84
autobolt a****s@9****t 14
dependabot[bot] 4****] 6
Leo Arnold o****e@l****e 1

Committer domains:


Issue and Pull Request metadata

Last synced: 3 days ago

Total issues: 0
Total pull requests: 12
Average time to close issues: N/A
Average time to close pull requests: 21 days
Total issue authors: 0
Total pull request authors: 2
Average comments per issue: 0
Average comments per pull request: 1.33
Merged pull request: 7
Bot issues: 0
Bot pull requests: 11

Past year issues: 0
Past year pull requests: 12
Past year average time to close issues: N/A
Past year average time to close pull requests: 21 days
Past year issue authors: 0
Past year pull request authors: 2
Past year average comments per issue: 0
Past year average comments per pull request: 1.33
Past year merged pull request: 7
Past year bot issues: 0
Past year bot pull requests: 11

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/ruby-oauth/snaky_hash

Top Issue Authors

Top Pull Request Authors

  • dependabot[bot] (11)
  • leoarnold (1)

Top Issue Labels

Top Pull Request Labels

  • github_actions (11)
  • dependencies (11)

Package metadata

gem.coop: snaky_hash

๐Ÿ”ฎ A Hashie::Mash joint to make #snakelife better

  • Homepage: https://structuredmerge.org
  • Documentation: http://www.rubydoc.info/gems/snaky_hash/
  • Licenses: MIT
  • Latest release: 2.0.6 (published 5 days ago)
  • Last Synced: 2026-06-13T23:33:48.136Z (2 days ago)
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 112,796,352 Total
  • Docker Downloads: 556,201,717
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.114%
    • Docker downloads count: 0.171%
    • Downloads: 0.284%
  • Maintainers (1)
  • Funding:
    • https://github.com/sponsors/pboling
rubygems.org: snaky_hash

๐Ÿ”ฎ A Hashie::Mash joint to make #snakelife better

  • Homepage: https://structuredmerge.org
  • Documentation: http://www.rubydoc.info/gems/snaky_hash/
  • Licenses: MIT
  • Latest release: 2.0.6 (published 5 days ago)
  • Last Synced: 2026-06-14T14:43:28.453Z (1 day ago)
  • Versions: 9
  • Dependent Packages: 2
  • Dependent Repositories: 922
  • Downloads: 112,821,401 Total
  • Docker Downloads: 556,201,717
  • Rankings:
    • Docker downloads count: 0.214%
    • Downloads: 0.735%
    • Dependent repos count: 1.091%
    • Dependent packages count: 5.18%
    • Average: 11.373%
    • Stargazers count: 29.417%
    • Forks count: 31.601%
  • Maintainers (1)
  • Funding:
    • https://github.com/sponsors/pboling

Dependencies

.github/workflows/ancient.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/codeql-analysis.yml actions
  • actions/checkout v4 composite
  • github/codeql-action/analyze v3 composite
  • github/codeql-action/autobuild v3 composite
  • github/codeql-action/init v3 composite
.github/workflows/coverage.yml actions
  • actions/checkout v4 composite
  • codecov/codecov-action v5 composite
  • coverallsapp/github-action master composite
  • irongut/CodeCoverageSummary v1.3.0 composite
  • marocchino/sticky-pull-request-comment v2 composite
  • qltysh/qlty-action/coverage main composite
  • ruby/setup-ruby v1 composite
.github/workflows/current-runtime-heads.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/current.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/dependency-review.yml actions
  • actions/checkout v4 composite
  • actions/dependency-review-action v4 composite
.github/workflows/heads.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/jruby.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/legacy.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/macos.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/style.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/supported.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/truffle.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/unsupported.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/windows.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite
Gemfile rubygems
  • appraisal >= 0
  • debug >= 1.0.0
  • gem_bench ~> 2.0, >= 2.0.5
Gemfile.lock rubygems
  • ansi 1.5.0
  • appraisal 3.0.0.rc1
  • ast 2.4.3
  • backports 3.25.1
  • benchmark 0.4.0
  • bigdecimal 3.1.9
  • bundler 2.6.9
  • bundler-audit 0.9.2
  • concurrent-ruby 1.3.5
  • date 3.4.1
  • debug 1.10.0
  • diff-lcs 1.6.2
  • diffy 3.4.3
  • docile 1.4.1
  • dry-configurable 1.3.0
  • dry-core 1.1.0
  • dry-inflector 1.2.0
  • dry-initializer 3.2.0
  • dry-logic 1.6.0
  • dry-schema 1.14.1
  • dry-types 1.8.2
  • erb 5.0.1
  • gem_bench 2.0.5
  • hashie 5.0.0
  • io-console 0.8.0
  • irb 1.15.2
  • json 2.12.0
  • kettle-soup-cover 1.0.9
  • kramdown 2.5.1
  • kramdown-parser-gfm 1.1.0
  • language_server-protocol 3.17.0.5
  • lint_roller 1.1.0
  • logger 1.7.0
  • nokogiri 1.18.8
  • ostruct 0.6.1
  • parallel 1.27.0
  • parser 3.3.8.0
  • pp 0.6.2
  • prettyprint 0.2.0
  • prism 1.4.0
  • psych 5.2.6
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.2.1
  • rdoc 6.14.0
  • reek 6.5.0
  • regexp_parser 2.10.0
  • reline 0.6.1
  • rexml 3.4.1
  • rspec 3.13.0
  • rspec-block_is_expected 1.0.6
  • rspec-core 3.13.3
  • rspec-expectations 3.13.4
  • rspec-mocks 3.13.4
  • rspec-support 3.13.3
  • rubocop 1.75.6
  • rubocop-ast 1.44.1
  • rubocop-gradual 0.3.6
  • rubocop-lts 8.1.1
  • rubocop-md 1.2.4
  • rubocop-packaging 0.6.0
  • rubocop-performance 1.25.0
  • rubocop-rake 0.7.1
  • rubocop-rspec 3.6.0
  • rubocop-ruby2_2 2.0.5
  • rubocop-shopify 2.17.0
  • rubocop-thread_safety 0.7.2
  • ruby-progressbar 1.13.0
  • simplecov 0.22.0
  • simplecov-cobertura 2.1.0
  • simplecov-console 0.9.3
  • simplecov-html 0.13.1
  • simplecov-lcov 0.8.0
  • simplecov-rcov 0.3.7
  • simplecov_json_formatter 0.1.4
  • snaky_hash 2.0.1
  • standard 1.50.0
  • standard-custom 1.0.2
  • standard-performance 1.8.0
  • standard-rubocop-lts 1.0.10
  • stone_checksums 1.0.0
  • stringio 3.1.7
  • terminal-table 4.0.0
  • thor 1.3.2
  • unicode-display_width 3.1.4
  • unicode-emoji 4.0.4
  • version_gem 1.1.8
  • yard 0.9.37
  • yard-junk 0.0.10
  • yard-relative_markdown_links 0.5.0
  • zeitwerk 2.7.3
snaky_hash.gemspec rubygems
  • rake ~> 13.0 development
  • rspec ~> 3.13 development
  • rspec-block_is_expected ~> 1.0, >= 1.0.6 development
  • stone_checksums ~> 1.0 development
  • hashie >= 0
  • version_gem >= 1.1.8, < 3

Score: 25.396485182064993