Files
nip/spec
Brian Cunnie 6363636c21 Hygeine: Ruby: Use shorter regexps
`[0-9]` → `\d`, `[0-9a-f]` → `[[:xdigit:]]`

A follow on to the previous commit, which did the same for Golang.

Ruby supports the above matchers like Golang does:
<https://ruby-doc.org/core-3.1.2/Regexp.html>
2022-07-22 12:47:14 -04:00
..