クラスを可能な限りカプセル化しようとしています。このような send メソッドを使用してはいけない理由はありますか?
class MyClass
def self.join_two_strings(first, second)
new.send(:join_two_strings, first, second)
end
def join_two_strings(first, second)
first + second
end
private :join_two_strings
end