Slava
Slava

Reputation: 37

Long installing ri documentation for rails-4.0.2

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

Answers (1)

Малъ Скрылевъ
Малъ Скрылевъ

Reputation: 16514

It is good that it installs all dependency gems first, but strange that halts. How much time the installation of get?

Anyway, to disable or installation, add the following file inside of your home folder in format:

~/.gemrc

---
gem: --no-ri --no-rdoc
verbose: true
backtrace: true

NOTE: The verbose and backtrace are useful, but optional parameters.

Upvotes: 3

Related Questions