Rails3 - Beta - No such file or directory - lib
If you encounter an error like the following when trying to install rails 3 prerelease:
ravel:~ jfischer$ gem install rails --prerelease Successfully installed rails-3.0.0.beta3 1 gem installed Installing ri documentation for rails-3.0.0.beta3... ERROR: While executing gem ... (Errno::ENOENT) No such file or directory - lib
then you might want to try skipping the ri and rdoc generation which worked for me:
ravel:~ jfischer$ gem install rails --prerelease --no-ri --no-rdoc Successfully installed rails-3.0.0.beta3 1 gem installed