File.read not documented

C

cyberco

Sorry for probably asking the obvious, but I can't find the
documentation of the File.read method in either the core or standard
API documentation (from ruby-docs.org). Am I missing something?
Cheers,
CyBerco
 
T

Tim Hunter

cyberco said:
Sorry for probably asking the obvious, but I can't find the
documentation of the File.read method in either the core or standard
API documentation (from ruby-docs.org). Am I missing something?
Cheers,
CyBerco

Look for IO.read
 
C

cyberco

Look for IO.read

Thanks, Tim. I now see that the documentation of File includes a line
saying 'is closely associated with class IO'. Now, I would look at IO
if File extended it, but that is not the case. What's the bond between
File and IO?

Cheers,
CyBerco
 
F

Florian Gross

cyberco said:
Thanks, Tim. I now see that the documentation of File includes a line
saying 'is closely associated with class IO'. Now, I would look at IO
if File extended it, but that is not the case. What's the bond between
File and IO?

File inherits from IO:

irb(main):004:0> File.ancestors
=> [File, IO, File::Constants, Enumerable, Object, Kernel]
 
D

Dave Burt

saying 'is closely associated with class IO'. Now, I would look at IO
if File extended it, but that is not the case. What's the bond between
File and IO?

File inherits from IO:

irb(main):004:0> File.ancestors
=> [File, IO, File::Constants, Enumerable, Object, Kernel]

File does "extend" IO:

irb(main):001:0> File.superclass
=> IO
 
A

Aredridel

Thanks, Tim. I now see that the documentation of File includes a line
saying 'is closely associated with class IO'. Now, I would look at IO
if File extended it, but that is not the case. What's the bond between
File and IO?

File's a subclass of IO ...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top