これは、クラス メソッドをメタプログラム的に作成しようとしている場合に役立ちます。
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
従うべき私の答え...