alexdalitz / dnsruby

Dnsruby is a feature-complete DNS(SEC) client for Ruby, as used by many of the world's largest DNS registries and the OpenDNSSEC project
Other
194 stars 77 forks source link

Remove require to titlecased Digest #182

Closed jhawthorn closed 2 years ago

jhawthorn commented 2 years ago

There are a few requires to "digest" in this library, but this is the only one attempting the require using title case.

Some users on case-insensitive filesystems were reported strange results because of this (which I didn't totally figure out). I think it's best to just require the right library name from the right place.

alexdalitz commented 2 years ago

Thanks @jhawthorn !