brianstorti (Brian Storti)
- Login: brianstorti
- Registered on: 01/07/2016
- Last sign in: 04/28/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/07/2016
-
12:45 PM Ruby Bug #11966 (Closed): YAML#load fails with OpenStruct object
- Code that can be used to reproduce the issue (works on 2.2.3, fails on 2.3.0):
~~~
require 'ostruct'
require 'yaml'
yaml = "
args:
- !ruby/object:OpenStruct
table:
:body: foo "
YAML.load(yaml)
~~~
Stacktrace:
...