me techie…

ramblings on technology ….

Archive for the ‘Ruby’ Category

Another interesting place to read on ruby on rails…

Posted by sraghav on February 29, 2008

Another blog on ruby-rails
http://blog.whitet.net/

Posted in ExternaLinks, JusTalk, Rails, Ruby | Leave a Comment »

Adding pages to your rubyforge website

Posted by sraghav on February 25, 2008

Thanks to Tim Hunter for guiding me to the faq to be able to post pages on the project website.

http://rubyforge.org/docman/view.php/5/460/faq.html

Posted in ExternaLinks, LMS, OpenSource, Ruby | Leave a Comment »

DataWarehouse with Ruby on Rails

Posted by sraghav on February 21, 2008

Recently joined www.rubyforge.org. Wish to join a few projects on similar direction.

While browsing through I found a project they call ActiveWarehouseusing Ruby on Rails. Pretty interesting for me, since I come from Warehousing background myself.

I guess, I am going to read more about it and probably join the project. See if I can contribute something.

Posted in ETL, Rails, Ruby | Leave a Comment »

Order for installing gems

Posted by sraghav on July 12, 2007

For installing ruby on rails basic framework when u dont have access to internet, you could follow the following order of installing gems…

Install Ruby

Install RubyGems

Install different gems

  1. Rake
  2. ActiveSupport
  3. ActionPack
  4. ActionMailer
  5. ActiveRecord
  6. ActionWebService
  7. Rails

Also found some more info on installation of rails when internet connection is actually available. Here’s the source of info, the rails wiki site

  1. Installing Ruby
    1. sudo apt-get install ruby irb ri rdoc ruby1.8-dev build-essential
  2. Installing Ruby Gems
    1. sudo apt-get install rubygems
  3. Installing Rails
    1. sudo gem install rails -y
  4. Installing MySql
    1. sudo apt-get install libmysql-ruby mysql-server libmysqlclient15-dev
    2. sudo gem install mysql

Some more documentation on Ubuntu site

Posted in ExternaLinks, OpenSource, Rails, Ruby | Leave a Comment »