1
Ri似乎在給Rails的結果。有些事情是不對的。 任何人都可以幫助我從ri獲得有用的結果。我有一個完整的最新安裝Ruby(1.9.3)和Rails(3.2.3)。 例如,如果做ri Range
我得到這個。在Windows命令提示符下的Ruby ri沒有給出正確的信息
Range < Object
(from gem activesupport-3.2.3)
Constants:
RANGE_FORMATS
[not documented]
Instance methods:
include_with_range?
overlaps?
step_with_blockless
to_default_s
to_formatted_s
to_s
這可能會解決您的問題:http://stackoverflow.com/questions/1587354/ruby-1-9-ri-problem – Casper
是的,解決了它。謝謝。我找到了.chm文件。它們看起來與[Ruby Docs](http://www.ruby-doc.org/core-1.9.3/index.html)上的信息完全相同。所以我並不需要ri,因爲我很樂意使用基於Web的信息。再次感謝你的幫助。 – Will