It would be folly to even try and sum up all my experiences in one blog post. Hence this part is a short recap of my impressions of RubyConf San Diego. After a long journey of ~12000kms, little sleep, lots of coffee, and several moments of uncertainty ; I finally arrived at San Diego Convention … Continue reading When I travelled halfway across the world to attend RubyConf 14 San Diego
Tag: gems
bundling gems in rails application
Gem Bundling is basically used to maintain all required gems at your application level.It downloads necessary gems and maintain it under "/vender/gems" directory.Its very easy to use gem bundle.1. Insatll gemcutter gem ( Its gem hosting )gem install gemcutter2. Install bundler ( Its a tool that manages gem dependencies for your ruby application. )gem install bundler3. … Continue reading bundling gems in rails application
–no-ri –no-rdoc for ruby gem installation
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 !