You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(maint) Quote Ruby symbols in .sync.yml for PDK 3.4.0 compatibility
Due to stricter YAML parsing rules in Ruby 3.2.5 (used by PDK 3.4.0),
unquoted Ruby symbols in .sync.yml cause parsing errors. This updates
all Ruby symbols to be properly quoted strings (e.g. ':development'
instead of :development).
The error encountered was:
```bash
Psych::DisallowedClass: Tried to load unspecified class: Symbol
from psych/class_loader.rb:99:in `find'
```
This change allows the module to be properly updated using PDK 3.4.0
while maintaining the same functionality.
Signed-off-by: Gavin Didrichsen <[email protected]>
0 commit comments