vote up 2 vote down star

When using something like object.methods.sort.to_yaml I'd like to have irb interpret the \n characters rather than print them.

I currently get the following output:

--- \n- "&"\n- "*"\n- +\n- "-"\n- "<<"\n- <=>\n ...

What I'd like is something similar to this:

--- 
 - "&"
 - "*"
 - +
 - "-"
 - "<<"
 - <=>

Is this possible? Is there another method I can be calling which will interpret the string perhaps?

flag

54% accept rate

4 Answers

vote up 2 vote down check

Prefix your output with puts:

> puts object.methods.sort.to_yaml
--- 
 - "&"
 - "*"
 - +
 - "-"
 - "<<"
 - <=>
 => nil
link|flag
Thanks very much - this is exactly what I was looking for :) – mlambie Oct 23 '08 at 9:18
By default, irb calls the inspect method to print the object, which, for a string, escapes special characters such as \n. Print and puts interpret special characters and call to_s on non-strings. – Firas Oct 23 '08 at 9:55
vote up 1 vote down

The Ruby yaml library includes the "y" command, which takes care of both the yamlizing and the formatting:

y object.methods.sort
link|flag
vote up 1 vote down

Another option is to start irb with the noinspect option:

C:\>irb --noinspect
irb(main):001:0> Object.methods.to_yaml
=> ---
- instance_method
- yaml_tag_read_class
.....
- constants
- is_a?

irb(main):002:0>
link|flag
vote up 0 vote down

That's just irb -- I don't think you can control the return formatting.

You can still use print or puts to display it as you want.

link|flag

Your Answer

Get an OpenID
or

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