Open
Description
This module should explain it:
# When using the 'r' and 'o' option together, you should be able to combine the
# flags into one command to generate ri documentation for a given output
# destination. Such as:
#
# rdoc -ro mydocs lib/mylib.rb
#
module MyLib
def yaknow
puts "oh, totally"
end
end
When you try: rdoc -ro mydocs lib/mylib.rb
what you actually see is:
invalid options: -ro
(invalid options are ignored)