Get the name of a Ruby class

Here's how you can go about getting the name of a class in Ruby

Earlier today I wanted to get the name of a class in Ruby.

The reason I needed this was because I was grabbing an object that was polymorphic so I didn’t really know what I was dealing with.

Here is how I did it with some help from ActiveSupport;

my_object.class.name.demodulize

my_object is the object that I was unsure about.

Calling class on it returns a Class object.

Calling name on that object returns the name of the class.

Calling demodulize is a nice way of removing any modules that happen to be before it (I didn’t need the module information and most of the times you won’t).

If you don’t want to rely on ActiveSupport you can do;

my_object.class.name.split('::').last

Recent posts View all

SEO

Google follows URLs in text

Today I learned that Google follows URLs even when they are plain text

Web Dev

Check in with your database

It pays to take a step back and look at how your database is set up every so often. You will often find quick wins and hidden tech debt.