Hi,
I’ve just replaced ruby173-8 with ruby180-9 (that now includes yaml)
and I am getting “parse error” when loading my yaml files.
I’ve noticed that the included version uses syck parser:
begin
require 'yaml/syck'
@@parser = YAML::Syck::Parser
@@loader = YAML::Syck::DefaultLoader
rescue LoadError
require 'yaml/parser'
@@parser = YAML::Parser
@@loader = YAML::DefaultLoader
end
I’ve tried to comment it out but ‘yaml/parser’ is missing.
Any ideas?
Thanks,
Yura.