The issue with RDoc is not the color or font choices. The issue is that it’s difficult to find what we want. How many clicks from $SearchEngine does it take for you to find the method rdoc for SecureRandom.base64? How many sites do you have to know to ignore/avoid? Could a new rubyist figure it out?
Mike Perham :sidekiq:
Not even official tools like `ri` can help.
% ri SecureRandom.base64
Nothing known about SecureRandom.base64
Oops. Ruby's dynamic typing makes it difficult to handle statically. What if we could do this in `irb`?
> open SecureRandom.method(:base64).rdoc_url
Or similar?