Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
317 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?
6
votes
2answers
2k views

Why does my Ruby 'ri' tool not return results in command prompt? [closed]

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. ...
5
votes
4answers
2k 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 ...
3
votes
1answer
126 views

How to fix ri documentation duplication in rvm

Here's what I want to do ri Array Simple, right? Wrong! More than one class or module matched your request. You can refine your search by asking for information on one of: Array, TSortArray, ...
3
votes
2answers
343 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 ...
3
votes
3answers
260 views

Is ri worth showing new users? (Ruby)

I've been working on a Ruby learning guide and I was told I should write about RI (Ruby Interactive Reference). After looking around the web I decided there wasn't that much information about the ...
2
votes
1answer
51 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 ...
1
vote
1answer
87 views

Ruby: Is there a way to create Ri documentation?

I want to create some Ri documentation for a Ruby class I wrote. Is there a way to create ri documentation and how do you do it? Thanks!
1
vote
2answers
408 views

Getting rid of ANSI escape characters when viewing ri in (Mac)Vim

I'm having trouble viewing ri documentation within gvim and MacVim (tried it on both) Some of the ri documentation includes text decorations that look fine when viewed in a terminal window, but ...
1
vote
1answer
220 views

Why does Ruby's ri not return to a bash command prompt (maybe Unix question)?

When I execute ri ... in a terminal on my Mac, I get, maybe, 50 blank lines, then the output I'm expecting, then a last line: (END) , with (END) displayed with white letters on black background. I ...
1
vote
2answers
129 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 ...
0
votes
0answers
15 views

Can't read rdoc of gems installed recently

When I execute "ri SomeClass", the "ri" command report error: "System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rdoc/ri/ri_reader.rb:54:in `initialize': No such file or ...
0
votes
2answers
60 views

Why doesn't ri know anything about Rails?

$ ri link_to Nothing known about .link_to Actually, it seems that ri knows nothing about Rails. But ri --list-doc-dirs shows the Rails folders are included: /usr/share/ri/1.8/system ...
0
votes
1answer
39 views

Does ri know about all ruby classes?

When I pass CSV to ri I get this output Nothing known about CSV I thought all ruby classes are documented with ri.
0
votes
2answers
88 views

Fix hover “ri” in Janus, Vim setup?

I have installed Janus to improve my vim. All works fine, except for the Ri documentation, that opens on hovering a keyword. On my installation it shows the output of "ri --help" instead of the ...
0
votes
1answer
69 views

ri Not Working in zsh

I'm using zsh on Mac OS X. When I type ri followed by a class name everything works fine. However, if I want to look up specific method documentation (e.g. Array#new), the shell would tell me zsh: no ...
0
votes
1answer
215 views

Problem with ri + rvm + Textmate

I'm trying to lookup help for Ruby methods in Textmate through the Ctrl+H shortcut, but I'm always getting this error: ...
0
votes
0answers
88 views

SQL Server 2000 to SQL Server 2008 R2 migration: SCHEMAS and DECLARATIVE REFERENTIAL INTEGRITY

We have about 10 databases in SQL Server 2000. They could be (should have been) logically inter-related with declared FK relationships, but they are now in separate databases mainly to make some ...
0
votes
3answers
114 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 ...
0
votes
1answer
224 views

Unable to run fastri on cygwin: uninitialized constant Gem::Version (NameError)

I'm trying to setup fastri (http://eigenclass.org/hiki/fastri) on emacs running on cygwin in windows. The ruby install is also from cygwin, not the windows version of ruby. After downloading, ...