Summary

Allows using the 'super' keyword in methods of reopened classes.
Simple and elegant alternative to alias_method_chain for redifining methods while keeping access to the previous definition.

Examples

class Post
  def text
    @text.strip
  end
end

class Post
  override :text
  def text
    super.reverse
  end
end