Commit 649476cf69087786a57bebafaa9ffa115c44c9ae
1 parent
28a8ed41
Exists in
master
and in
29 other branches
avoid the (slow) process of generating gem docs
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
script/quick-start
... | ... | @@ -23,9 +23,9 @@ run() { |
23 | 23 | |
24 | 24 | gem_install() { |
25 | 25 | if [ -w "$(ruby -rubygems -e 'puts Gem.dir')" ]; then |
26 | - run gem install $@ | |
26 | + run gem install --no-ri --no-rdoc $@ | |
27 | 27 | else |
28 | - run gem install --user-install $@ | |
28 | + run gem install --user-install --no-ri --no-rdoc $@ | |
29 | 29 | fi |
30 | 30 | } |
31 | 31 | ... | ... |