If I want see documentation on my gems I can do:
yard server --gems
How can I see the documentation of Ruby's standard library?
If I want see documentation on my gems I can do:
yard server --gems
How can I see the documentation of Ruby's standard library?
You have to
yardoc *.c
(that will generate the core documentation),
2a. run yardoc .
(that will generate the stdlib documentation but will take a lot of time),yard server
.(from http://gnuu.org/2010/10/13/local-copies-of-documentation/)
© 2022 - 2024 — McMap. All rights reserved.