Điều này hữu ích nếu bạn đang cố gắng tạo các phương thức lớp theo phương thức siêu chương trình:
def self.create_methods(method_name)
# To create instance methods:
define_method method_name do
...
end
# To create class methods that refer to the args on create_methods:
???
end
Câu trả lời của tôi để làm theo ...
singleton_class.define_method