Can you call a private method outside a Ruby class using its object? Technology Community › Category: Ruby › Can you call a private method outside a Ruby class using its object? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Yes, with the help of the send method. Given the class Test: class Test private def method p "I am a private method" end end We can execute the private method using send: >> Test.new.send(:method) "I am a private method"