Artful <fuller.artful@...> writes: > > I tried installing rubygems 1.8.5 and for the most part everything > went as expected, but I received two Warnings and one Message: > > Fetching: builder-2.1.2.gem (100%) > WARNING: builder-2.1.2 has an invalid nil value for @cert_chain > > Fetching: abstract-1.0.0.gem (100%) > WARNING: abstract-1.0.0 has an invalid nil value for @cert_chain > > Installing ri documentation for activerecord-3.0.9... > ERROR: While generating documentation for activerecord-3.0.9 > ... MESSAGE: Invalid argument - ./</cdesc-<.ri > ... RDOC args: --ri --op D:/Ruby192/lib/ruby/gems/1.9.1/doc/ > activerecord-3.0.9/ri --main > > Should I worry about this?
I don't think so. I also get those errors, but it does not appear to affect anything. I would also look at creating a .gemrc file to instruct Ruby gems to ignore rdoc files - you probably won't need them and it will improve installation time immensely. gem: --no-rdoc http://docs.rubygems.org/read/chapter/11#page55 > > Also, I perused the Internet and found a rails-2.3.4.gem file. Should > I remove the existing rubygems and install rails-2.3.4.gem instead? I highly recommend using RVM to enable multiple versions of Ruby and gems to be installed on a per project basis and without affecting the underlying system. http://rvm.beginrescueend.com/ > > I am a newbie with only a few days' experience with ruby itself. I > figured it best to learn a little ruby before diving into rails. Enjoy! > > Thanks, > Arthur > -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

