Freeze a class
class MyClass def my_method puts "This is the only method allowed in MyClass." end MyClass.freeze end class MyClass def my_method puts "I like this implementation of my_method better." end end