I'm having some trouble navigating the RDoc information at ruby-doc. Now it's probably just me, coming from the java world but am I missing something?
For instance when I want to do File IO, I look for File and find the respective page. There I see all the static methods on File
. That's perfect. What I don't find here is the actual instance methods like fileInstance.read_line
, I actually found those by doing a puts of fileInstance.methods
I'd like to optimize my workflow, I'm sure I'll be delving into the ruby api a lot in the coming weeks, so have I just missed something here? Where would I find an example of read_line in the api?
Thanks