gem install rails
How to rectify this error and what it means?
Attachments:
http://www.ruby-forum.com/attachment/6484/RailsInstallationError.png
--
Posted via http://www.ruby-forum.com/.
--
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 rubyonra...@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-ta...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
> What is ri and rdoc?
RDoc is system that generates documentation for the libraries you
install. ri is program that gives you command-line access to the same
documentation.
As an example, when you look at http://api.rubyonrails.org/ , you're
looking at documentation generated by RDoc.
By default, when you install a gem, RubyGems also generates the ri and
RDoc documentation files for the gem, so that you can access this
documentation locally on your computer.
Chris