Getting in touch with Ruby

I’m just playing around with Ruby “to get some work doneā„¢” (he he). I want to read some waypoints from a gpx file and stuff them into a sqlite database file. REXML wasn’t that intuitive. so I just installed the gpx GEM:

su
apt-get install rubygems
wget http://rubyforge.org/frs/download.php/50755/libxml-ruby-0.9.8.gem
wget http://rubyforge.org/frs/download.php/32625/gpx-0.4.gem
gem install libxml-ruby-0.9.8.gem
gem install gpx-0.4.gem

Will figure out tomorrow how to actually use it.

Comments are closed.