class Foo public def my_public_method 1 + 2 end protected def my_protected_method 3 + 4 end private def my_private_method 5 + 6 end end