How do you generate rDoc for a particular plugin using rake

rake, rdoc, ruby, ruby-on-rails

Solution

Unbelievably, I've just figured it out!

rake doc:plugins:paperclip

That was simple.

Problem

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?

Original source