One can install gem without rdoc usinggem install GEM_NAME --no-ri --no-rdocSkip ri rdoc for all gem installation as i haven't seen anyone using it.Edit gemrc fileAdd following line to itvi ~/.gemrc:gem: --no-ri --no-rdocHere is my ~/.gemrc file---:verbose: truegem: --no-ri --no-rdoc:update_sources: true:sources:- http://gems.rubyforge.org- http://gems.github.com:backtrace: false:bulk_threshold: 1000:benchmark: falseThat's it !
Author: sandipransing
Managing multiple ruby versions and rails versions with rvm
While working with many projects that uses different ruby versions and rails versions, one big problem arises that how do we manage all this ?We know that managing multiple rails versions wont be problem at all.but what about ruby versions, How one can manage multiple ruby versions. also while upgrading or degrading ruby version, we … Continue reading Managing multiple ruby versions and rails versions with rvm
jruby rails installation on ubuntu interpid
# install mysql if you dont have already installedsudo apt-get install mysql-server mysql-client libhtml-template-perl mailx dbishell libcompress-zlib-perl mysql-doc-5.0 tinyca# install ant and jdksudo apt-get install ant sun-java6-jdk# install jrubymkdir softwarecd softwarewget http://dist.codehaus.org/jruby/jruby-bin-1.1.5.tar.gztar xvfz jruby-bin-1.1.5.tar.gzln -s jruby-1.1.5 jrubyexport PATH=$PATH:$HOME/software/jruby/bin# install the version of rails wanted by jrubyjruby -S gem install jruby-openssljruby -S gem install rails# list … Continue reading jruby rails installation on ubuntu interpid
