Tagged Questions
The syck tag has no wiki summary.
3
votes
2answers
78 views
Why the difference in behavior of YAML parsers (syck and psych)?
Look at this case:
ruby 1.9.2p0 (2010-08-18 revision 29036) [i686-linux]
irb(main):006:0> YAML::ENGINE.yamler = "psych"
=> "psych"
irb(main):007:0> '8902-20-13'.to_yaml
ArgumentError: ...
2
votes
1answer
432 views
How do I do YAML in JRuby in 1.9 with Syck?
If I run JRuby in Ruby 1.9 mode, and tell it to use Syck rather than Psych, nothing seems to work. Am I missing something?
Andrew-Grimms-MacBook-Pro:~ agrimm$ ruby --version
jruby 1.6.1 ...
2
votes
2answers
465 views
ActiveRecords not serialized to yaml correctly
When I serialize active records I'm finding that the yaml format is different depending on which box I'm running on. On one box I get:
object: !ruby/object:User
instead of
object: ...
1
vote
1answer
220 views
JRuby with YAML
When I use Rails with YAML I change boot.rb with
require "yaml"
YAML::ENGINE.yamler = "syck"
It works fine with normal Ruby.
When I transfer the application from Ruby to JRuby, it doesn't work.
...
1
vote
2answers
869 views
YAML Encoding of Malformed String, Model Serialization Issues
I've isolated a problem with Ruby on Rails where a model with a serialized column is not properly loading data that has been saved to it.
What goes in is a Hash, and what comes out is a YAML string ...
0
votes
0answers
12 views
Switched from Webrick to Thin and got error with Syck
I just switched from Webrick to Thin (added thin to my gemfile, bundled and then ran 'thin start') and got this error:
undefined method `join' for #<Syck::PrivateType:0x00000102d01a58>
This ...
0
votes
0answers
62 views
Ruby: how can I get the name/version of the Yaml parser I'm using? Where can I get yaml4r?
I've been reading the YAML docs on http://yaml4r.sourceforge.net/doc/
There is an example:
puts [[ 'Crispin', 'Glover' ]].to_yaml( :Indent => 4, :UseHeader => true, :UseVersion => true )
...