What is the name of a class, in a class method?
What is the name of a class, in a class method?
1 2 3 4 5 6 7 |
# bad class Foo def self.hello puts class_name # is a monkey patch from yard so probably won't work in production puts class.name # is 'Module' :( end end |