I just installed rvm and then rails 3.1rc5 with:
gem install rails
But I got some errors after "Installing the ri documentation" and the RDoc documentation:
Successfully installed <bunch of things> 30 gems installed Installing ri documentation for multi_json-1.0.3... Installing ri documentation for activesupport-3.1.0.rc5... Installing ri documentation for builder-3.0.0... unable to convert "\xF1" from ASCII-8BIT to UTF-8 for README, skipping unable to convert "\xF1" from ASCII-8BIT to UTF-8 for README.rdoc, skipping Installing ri documentation for i18n-0.6.0... Installing <tons more documentation> Installing ri documentation for rails-3.1.0.rc5... file 'lib' not found Installing RDoc documentation for multi_json-1.0.3... Installing RDoc documentation for activesupport-3.1.0.rc5... Installing RDoc documentation for builder-3.0.0... unable to convert "\xF1" from ASCII-8BIT to UTF-8 for README, skipping unable to convert "\xF1" from ASCII-8BIT to UTF-8 for README.rdoc, skipping Installing RDoc documentation for i18n-0.6.0... Installing <tons more documentation> Installing RDoc documentation for rails-3.1.0.rc5... file 'lib' not found
Problems with the README file do not seem to matter much, but the "lib" file was not found to be a little intimidating. Why is he doing this? Some searches revealed that others had this problem and fixed it with gem install rdoc , and then restarted gem install rails --pre . But it still gives me the same lib files.
source share