Reputation: 37
I'm have two machines with Ubuntu and Debian.
I installed RVM on every machines, and installed latest stable ruby. But when i'm trying make
gem install rails
gem starting install all gems and stopping on "Installing ri documentation for rails-4.0.2".
What i'm doing wrong? Thank you
Upvotes: 2
Views: 1754
Reputation: 16514
It is good that it installs all dependency gems first, but strange that halts. How much time the installation of ri get?
Anyway, to disable ri or rdoc installation, add the following file inside of your home folder in yaml format:
~/.gemrc
---
gem: --no-ri --no-rdoc
verbose: true
backtrace: true
NOTE: The verbose
and backtrace
are useful, but optional parameters.
Upvotes: 3