Tagged Questions
2
votes
1answer
70 views
Viewing RDoc (Ruby Docs) Offline On Portable Device (iOS/Android/etc)
I'd like to have offline access to RDoc generated pages so I can learn about a new gem or other software as I travel without Internet access. I prefer to use an iPad but this question is valid for any ...
0
votes
1answer
116 views
Why does it take longer to install RDOCSs and RIs than the actual gem?
It is always frustrating to install a gem and wait 2 seconds for the gem to install and then wait 30 seconds for the docs, which I never use(Google, anyone?). Why do we force this convention upon ...
0
votes
1answer
124 views
Ruby trying to RTFM but can't
Simple question, what is the best way on windows to search the documentation. This time I was wanting information on 'while'(resolved now by google) but I still can't can't get ri or the chm ...
3
votes
1answer
865 views
Nothing Known About … when using ri Array — Ruby
I have Ubuntu 11.10 and am using rvm with ruby 1.9.2. I followed this exactly to install Ruby: http://blog.sudobits.com/2011/10/27/how-to-install-ruby-on-rails-in-ubuntu-11-10/
I generate the docs ...
5
votes
5answers
3k views
file 'lib' not found when installing rails 3.1 on Mac OS X Lion
I just installed rvm and then rails 3.1rc5 with:
gem install rails --pre
But I got some errors after "Installing ri documentation" and the RDoc documentation:
Successfully installed <bunch of ...
21
votes
2answers
2k views
Nothing known about… when trying ri String#upcase Ruby
I have just installed the RVM and I am reading The Well-Grounded Rubyist book. In the first chapter I am supposed to try ri String#upcase to view documentation on the upcase method, however I get a ...
1
vote
3answers
174 views
ri output can't be piped into less
I'm running ri version 2.5.8 and ruby 1.9.2. If I try something like ri Enumerable | less, the paging is broken in less. I see output but I can't use CTRL-F or CTRL-B to page back and forward. If I ...
16
votes
3answers
1k views
What is the difference between ri and rdoc
Whenever I install gems I see ri and rdoc follow. I know this is documentation but what is the difference between the two and how to use them?
12
votes
2answers
5k views
Why does my Ruby 'ri' tool not return results in command prompt? [duplicate]
Possible Duplicate:
ruby 1.9 ri problem
Greetings,
When I try to use Ruby's ri tool in a command prompt window to acquire information about classes, methods, etc. it seems to always fail. ...
1
vote
2answers
148 views
RDoc : Change name of 'Atttributes:' section in ri-documentation
I'm using some meta-programming to generate a bunch of methods in ruby like so:
class EmotionalObject
def self.mood( name, *details )
define_method(name) do
# ...
end
end
mood ...