Let's use Nokogiri as an example.
How can I rewrite
page = Nokogiri::HTML.parse(html)
as
page = myparse(html)
I see the "alias" keyword but since it involves opening up whatever modules/classes a method belongs to, there is no universal way of aliasing.