vote up 0 vote down star

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.

flag

5 Answers

vote up 1 vote down check

RubyBrain is very useful, I find.

p method on RubyBrain.

link|flag
vote up 1 vote down

Do you mean like:

ri Kernel#p

link|flag
Cool. Didn't know you could do that. Thanks. – Mark Mar 10 at 16:36
NP :O) Ruby is full of neat tricks... – Paul Hedderly Mar 23 at 12:51
vote up 6 vote down

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|flag
Ah! That makes sense then. Thank you. – Mark Mar 8 at 17:11
vote up 1 vote down

Do you need more than this?

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

link|flag
Thanks. Don't know my way around the docs yet. – Mark Mar 8 at 17:08
vote up 9 vote down

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

link|flag
Cool. I didn't know it was in the Kernel. Thanks. – Mark Mar 8 at 17:07

Your Answer

Get an OpenID
or

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