class Example private def example_test puts \'Hello\' end end e = Example.new e.example_test
This of course will not work, because we specifi
Does not exactly answer the Question, but you can call private methods this way
class Example private def example_test puts 'Hello' end end e = Example.new e.send(:example_test)