Makes instance methods accessible through class methods. This is done to emulate the File class:
File.exist? "foo" File.new("foo").exist?
Both of the above expressions are equivalent.