As of Ruby 3.1, if you use YAML.load_file, you must explicitly list the classes that are allowed for deserialization.
Otherwise, a Psych::DisallowedClass error will be thrown.
Fixes #442
Changes proposed in this pull-request:
add BoshCliError to allowed classes for deserilization
As of Ruby 3.1, if you use YAML.load_file, you must explicitly list the classes that are allowed for deserialization. Otherwise, a
Psych::DisallowedClass
error will be thrown.Fixes #442
Changes proposed in this pull-request: