3

OK, I am trying to generate the rDoc for paperclip, but the rake task is choking on another plugin before it gets to it, so this is out of the question:

rake doc:plugins

I could go and fix up the broken plugin, but I'm busy and lazy, so I just want to generate the docs for paperclip. Is there any way of doing this?

Pistos
  • 23,070
  • 14
  • 64
  • 77
Codebeef
  • 43,508
  • 23
  • 86
  • 119

2 Answers2

5

Unbelievably, I've just figured it out!

rake doc:plugins:paperclip

That was simple.

Codebeef
  • 43,508
  • 23
  • 86
  • 119
0

You can always just run rdoc from the plugin's individual directory. This wouldn't include it in your project's /doc folder, but it would create a /doc folder inside the plugin which you can browse

Gareth
  • 133,157
  • 36
  • 148
  • 157