I created my own ruby console using IronRuby engine, but I can't get to_yaml to work on any of my .net classes.

Did I missed anything?

person = Person.new
person.Name = 'John Doe'
person.Age = 26
puts person.to_yaml #does not work
link|improve this question

70% accept rate
feedback

1 Answer

up vote 1 down vote accepted

It looks like YAML isn't included by default at startup. Try running

require 'yaml'

first - it made your code work for me in iirb.

link|improve this answer
Thanks, now I need to tell my application to point it to an existing ruby directory :) but this is already a separate question :) – Marc Vitalis Jan 13 '11 at 10:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.