[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

gem/rdoc/ri errors on mingw

Alex Combas

2/15/2006 7:18:00 AM

Hello,yesterday I switched from the very good, perfectly functionalone-click installer to a build-it-yourself-ruby-compile on winXPwith the mingw environment.All went very smoothly.Great documents on setting up mingw/msys herehttp://mingw.org/MinGWiki/index.php/RealDumbQuickstart?PHPSESSID=0691a1dc17253ae9792187c3b... Great documents on building ruby on windows herehttp://www.rubygarden.org/ruby?HowToBuildOnWin... this up, by getting ruby-gnome2 setup with this wonderful dochttp://ruby-gnome2.sourceforge.jp/hiki.cgi?Install+Guide+for+Wi... works! Ruby works! Ruby-Gnome works!...rdoc doesnt work.. ri doesnt work.. gem doesnt either... big uhohs!!Here is some output:$> ruby -vruby 1.8.4 (2006-02-14) [i386-mingw32]$>cd /c/ruby/build/ruby$> make install-docGenerating RDoc documentation./miniruby.exe ./runruby.rb --extout=.ext -- "./bin/rdoc" --all --ri--op "C:/ruby/share/ri/1.8/system" "."c:/ruby/build/ruby/lib/tracer.rb:27:in `(null)': undefined method `[]'for nil:NilClass (NoMethodError) from c:/ruby/build/ruby/lib/rdoc/parsers/parse_rb.rb:16:in `(null)' from c:/ruby/build/ruby/lib/rdoc/rdoc.rb:8:in `(null)' from ./bin/rdoc:59make: *** [do-install-doc] Error 1$> gemsh: gem: command not found$> rdocc:/ruby/lib/ruby/1.8/tracer.rb:27:in `(null)': undefined method `[]'for nil:NilClass (NoMethodError) from c:/ruby/lib/ruby/1.8/rdoc/parsers/parse_rb.rb:16:in `(null)' from c:/ruby/lib/ruby/1.8/rdoc/rdoc.rb:8:in `(null)' from c:/ruby/bin/rdoc:59$> riInstalling Documentation------------------------'ri' uses a database of documentation built by the RDoc utility.So, how do you install this documentation on your system? It depends onhow you installed Ruby._If you installed Ruby from source files_ (that is, if it some point youtyped 'make' during the process :), you can install the RDocdocumentation yourself. Just go back to the place where you have yourRuby source and type make install-docYou'll probably need to do this as a superuser, as the documentation isinstalled in the Ruby target tree (normally somewhere under+/usr/local+._If you installed Ruby from a binary distribution_ (perhaps using aone-click installer, or using some other packaging system), then theteam that produced the package probably forgot to package thedocumentation as well. Contact them, and see if they can add it to thenext release.No ri documentation found in:Was rdoc run to create documentation?$>Anyone know how to properly setup a ruby compile so that gem/ri/rdocwill work as expected? Anyone have a clue why 'make install-doc' fails?Thanks for any help.--Alex Combashttp://noodlejunkie.blo...
6 Answers

Daniel Völkerts

2/15/2006 7:31:00 AM

0

Alex Combas schrieb:

> $> gem
> sh: gem: command not found

This is what I call (ruby one-click-installer on Windows):

1. In my path there is an entry for c:\ruby\bin
2. In my ruby\bin directory, there is a file called gem.bat (this one is
started by windows if you type gem)

3. This gem file contains one beautiful line
"c:\ruby\bin\ruby.exe" "c:\ruby\bin\gem" %1 %2 %3 %4 %5 %6 %7 %8 %9

So my guess is, make sure you have the gem ruby file installed (get it
from rubyforge? I doesn't exactly know where to download gem as I use
the one-click-stuff) and create this batch file.

HTH,

--
Daniel Völkerts
Protected by Anti Pesto.


Jim Weirich

2/15/2006 12:27:00 PM

0

Alex Combas wrote:
[...]
> Anyone know how to properly setup a ruby compile so that gem/ri/rdoc
> will work as expected? Anyone have a clue why 'make install-doc' fails?
>
> Thanks for any help.

http://docs.rubygems.org/read... should help with RubyGems.



--
Posted via http://www.ruby-....


Alex Combas

2/15/2006 4:54:00 PM

0

On 2/15/06, Jim Weirich <jim@weirichhouse.org> wrote:>> http://docs.rubygems.org/read... should help with RubyGems.>>Thanks Jim, installed gem from ruby forge. Boy, that was easy.Any clues about rdoc and ri?Still no worky.I wonder if documentation is really nessisary though? Sure its nice, butis there any difference between having it local and viewing it on ruby-doc ?I guess the difference would be if I ever needed to write my own documentation.--Alex Combashttp://noodlejunkie.blo...

Alex Combas

2/15/2006 7:04:00 PM

0

On 2/14/06, Daniel Völkerts <daniel@voelkerts.de> wrote:> Alex Combas schrieb:>> > $> gem> > sh: gem: command not found>> This is what I call (ruby one-click-installer on Windows):>> 1. In my path there is an entry for c:\ruby\bin> 2. In my ruby\bin directory, there is a file called gem.bat (this one is> started by windows if you type gem)>> 3. This gem file contains one beautiful line> "c:\ruby\bin\ruby.exe" "c:\ruby\bin\gem" %1 %2 %3 %4 %5 %6 %7 %8 %9>> So my guess is, make sure you have the gem ruby file installed (get it> from rubyforge? I doesn't exactly know where to download gem as I use> the one-click-stuff) and create this batch file.>Thank Daniel,Yeah I was using the one-click installer which wasreally nice, but I figured it would be good to have rubybuilt from scratch however it seems there are some hidden gotchas.I'll post back if I figure out why make-doc isnt working.--Alex Combashttp://noodlejunkie.blo...

David Vallner

2/15/2006 9:56:00 PM

0

Dna Streda 15 Február 2006 17:53 Alex Combas napísal:
> I wonder if documentation is really nessisary though? Sure its nice, but
> is there any difference between having it local and viewing it on ruby-doc
> ?
>

Well, the online version is faster than ri ;)

But at least a working rdoc is somewhat important, I'd say.

David Vallner


David Vallner

2/16/2006 1:00:00 AM

0

Dna Streda 15 Február 2006 23:14 James Britt napísal:
> David Vallner wrote:
> > Dňa Streda 15 Február 2006 17:53 Alex Combas napísal:
> >>I wonder if documentation is really nessisary though? Sure its nice, but
> >>is there any difference between having it local and viewing it on
> >> ruby-doc ?
> >
> > Well, the online version is faster than ri ;)
>
> So *that's* why my bandwidth is going through the roof.
>

Well, I have a crappy CPU, and a wonderful cable connection.

david@chello082119107152:~$ time ri -T Array#[]
(snip)
real 0m0.876s
user 0m0.589s
sys 0m0.108s

david@chello082119107152:~$ ping -c 1 ruby-doc.org
PING ruby-doc.org (207.44.206.37) 56(84) bytes of data.
64 bytes from tagbomb.com (207.44.206.37): icmp_seq=1 ttl=53 time=152 ms

And unless you set that wossname header to no-cache globally, the strain can't
be that horrible. At least not from us Opera users.

> :)
> :
> > But at least a working rdoc is somewhat important, I'd say.
>
> I would think so, unless you have a guaranteed Net connection.

I meant for documentation generation actually.

David Vallner