Is there a place where I can get documentations/references of all classes and methods of programming languages, namely Ruby, PHP and Python?
It doesn't have to be XML, as long as it is parse-able and consistent. I'm hoping to find all core classes, methods (with parameters and type of return value) and properties. And if available a description of the method.
I need this for a project that I'm currently working on (a text editor with basic completion and type inference). I've already done this for for JavaScript (since the JS reference is relatively small, I created it myself.)
Going to ruby-doc.org I get the documentation as html but the method names/parameters/return value are not consistent at all. Same with PHP from PHP.net
Thanks,