Commit 649476cf69087786a57bebafaa9ffa115c44c9ae

Authored by Antonio Terceiro
1 parent 28a8ed41

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,9 +23,9 @@ run() {
23 23
24 gem_install() { 24 gem_install() {
25 if [ -w "$(ruby -rubygems -e 'puts Gem.dir')" ]; then 25 if [ -w "$(ruby -rubygems -e 'puts Gem.dir')" ]; then
26 - run gem install $@ 26 + run gem install --no-ri --no-rdoc $@
27 else 27 else
28 - run gem install --user-install $@ 28 + run gem install --user-install --no-ri --no-rdoc $@
29 fi 29 fi
30 } 30 }
31 31