Monkey Patching is a way of modifying and extending classes in Ruby. Basically, you can modify already defined classes in Ruby, adding new methods and even modifying previously defined methods.
Remarks
Monkey patching is often used to change the behavior of existing ruby code, from gems for instance.