up vote 4 down vote favorite
share [g+] share [fb]

I'm trying to find info on the p method in Ruby. It seems to produce internal info on the properties of a class but when I try to search for it I get every word that has the letter p in it.

link|improve this question
feedback

5 Answers

up vote 3 down vote accepted

RubyBrain is very useful, I find.

p method on RubyBrain.

link|improve this answer
feedback

Have you seen the api doc page? http://www.ruby-doc.org/core/classes/Kernel.html#M006002

link|improve this answer
Cool. I didn't know it was in the Kernel. Thanks. – Mark Mar 8 '09 at 17:07
feedback

Each method you can call "directly", e.g: print, p, abort, puts, readline, etc., is located in the Kernel class.


(Kernel.methods - Object.methods).sort.each do |method|
   puts method
end
link|improve this answer
Ah! That makes sense then. Thank you. – Mark Mar 8 '09 at 17:11
feedback

Do you mean like:

ri Kernel#p

link|improve this answer
Cool. Didn't know you could do that. Thanks. – Mark Mar 10 '09 at 16:36
NP :O) Ruby is full of neat tricks... – Paul Hedderly Mar 23 '09 at 12:51
feedback

Do you need more than this?

http://www.ruby-doc.org/core/classes/Kernel.html#M006002

link|improve this answer
Thanks. Don't know my way around the docs yet. – Mark Mar 8 '09 at 17:08
feedback

Your Answer

 
or
required, but never shown