Can you install documentation for existing gems?
Asked Answered
T

2

13

Rubyinside mentioned a blog post on how to speed up gem installation by not installing RI or RDoc.

Is it possible to install a gem and subsequently install documentation at a later date, so you can hack in haste and RTFM at leisure?

Thirdrate answered 20/3, 2009 at 1:13 Comment(0)
H
20
> gem help rdoc

Usage: gem rdoc [args] [options]
Options:
      --all                        Generate RDoc/RI documentation for all
                                   installed gems
      --[no-]rdoc                  Include RDoc generated documents
      --[no-]ri                    Include RI generated documents
  -v, --version VERSION            Specify version of gem to rdoc
Arguments:
  GEMNAME       gem to generate documentation for (unless --all)
Summary:
  Generates RDoc for pre-installed gems
Defaults:
  --version '>= 0' --rdoc --ri
Haldes answered 20/3, 2009 at 1:37 Comment(1)
How about modifying the documentation of an already installed gem? My question is here #5776991Scholem
N
10

If you run gem rdoc --all it will generate documentation for all your gems.

You can also use the following command to generate docs for gems in your bundle:

bundle list | egrep '\*' | sed -e 's/* \(.*\) (.*)/\1/g' | xargs -n 1 gem rdoc

You may need to adapt to your needs and also if bundle changes its output format.

Nasia answered 24/10, 2012 at 12:14 Comment(1)
Thanks simao, I am getting too much information, so now I find myself running bundle list | egrep '\*' | sed -e 's/* \(.*\) (.*)/\1/g' | xargs -n 1 gem rdoc --no-ri 2>&1 | grep -v "Gem::SourceIndex"Gaius

© 2022 - 2024 — McMap. All rights reserved.