I have different objects, for example
Article and Medium. When I use a helper, I would like to determine the name of the object (for example Articleor Medium). How can I do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
See http://ruby-doc.org/core-1.9.3/Object.html#method-i-class
also take a look at is_a? and respond_to?. It's generally better to use duck typing with |
||||
|
|
|
It is impossible. Constants and variables refer to the object. There is no way to get the name of it.
See that the value
|
|||||||||||||||
|
