Mike Robertson
Mike Robertson
### Steps to reproduce If you have a model called User that `has_many` notes for example, ``` ruby class User < ApplicationRecord has_many :notes, dependent: :destroy, as: :notable end ```...
Evidently javadoc-style comments (like `@param`, etc.) are commonly used in Ruby code. VS Code seems to parse it, in fact (if you hover over a ruby function with javadoc comments,...
To handle key rotation, from what I understand it's common to have a [JSON Web Key Set](https://auth0.com/docs/secure/tokens/json-web-tokens/json-web-key-set-properties) (JWKS) file ([related standard](https://datatracker.ietf.org/doc/html/rfc7517#section-5)) that contains a collection of JSON Web Keys (represented...