-1

I'm quite new to ruby and I'm trying to view Ruby documentation through command prompt (I'm on Windows 7, Ruby version 2.0.0p195). However, no matter which command I try, for example ri String#upcase, I always get the message "Nothing known about..."

I have read several posts here but nothing seems to fix the problem.

Cœur
  • 37,241
  • 25
  • 195
  • 267
  • possible duplicate of [Nothing known about.... when trying ri String#upcase Ruby](http://stackoverflow.com/questions/6625631/nothing-known-about-when-trying-ri-stringupcase-ruby) – vgoff Dec 10 '14 at 00:31

1 Answers1

0

With RVM in order to get the system documentation, you can issue the command

rvm docs generate-all

If you only want the ri documentation, this is what I do:

rvm docs generate-ri
the Tin Man
  • 158,662
  • 42
  • 215
  • 303
vgoff
  • 10,980
  • 3
  • 38
  • 56
  • All for the want of a full width highlighting? :) I guess it does communicate the `carriage-return` at the end of those commands. – vgoff Dec 13 '14 at 18:35