vote up 3 vote down star

How can I get the class name from an ActiveRecord object?

I have:

result = User.find(1)

I tried:

result.class
# => User(id: integer, name: string ...)
result.to_s
# => #<User:0x3d07cdc>"

I need only the class name, in a string (User in this case). Is there a method for that? I know this is pretty basic, but I searched both rails' and ruby's docs, and I couldn't find it.
Thanks.

flag

This question is really "How do I get the name of a Ruby class?". I think the question should be edited to reflect this. – Oliver N. May 5 at 18:20

3 Answers

vote up 13 vote down check

You want to call .name on the object's class:

result.class.name
link|flag
That is what I was looking for. Thank you. – andi May 5 at 21:14
vote up 2 vote down

Does result.class.to_s work?

link|flag
vote up 3 vote down

Both result.class.to_s and result.class.name works

link|flag
1  
But conceptually, #name returns the name, #to_s returns a string representation, which just happens to be identical to the name. I'd stick to using #name, just out of anal-retentiveness. – kch May 5 at 20:54

Your Answer

Get an OpenID
or

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