I downloaded the ruby Twitter gem source code and am trying to generate the documentation using yard, which I installed via gem install yard
. In the rakefile, I found the following, which I assume is used to generate the docs for the Twitter gem:
require 'yard'
YARD::Rake::YardocTask.new
I tried to require yard
in irb and then run YARD::Rake::YardocTask.new
but nothing happened.
Can you help me get on the right track?