onrails.org home

Advanced Ruby - Day 1

Let’s get started. I’m at the Advanced Ruby training. Here are the topics we gonna cover

In fact when I saw the topics that will be covered by Dave Thomas and Chad Fowler, and the fact that some of my collogues from Pinnacol where attending I had to join…Oh yea, it’s a 25 minute drive from home too.

So this morning I woke up and installed Ruby 1.9. I didn’t use multiruby as many do I just downloaded Ruby 1.9.1-p0 from http://www.ruby-lang.org/en/downloads. These are the steps to install:


cd ruby-1.9.1-p0
autoconf
./configure —prefix=/usr/local/ruby1.9
make
sudo make install

Then you can check the version by

$/usr/local/ruby1.9/bin/ruby -v
ruby 1.9.1p0 (2009-01-30 revision 21907) [i386-darwin9.6.0]
$/usr/local/ruby1.9/bin/irb
RUBY_VERSION
=> “1.9.1”

I didn’t add /usr/local/ruby1.9/bin to my path, so the default ruby is still my mack default, 1.8.6 of my mac (ruby 1.8.6 (2008-03-03 patchlevel 114) [universal-darwin9.0]).

Keep on reading to see some of the code we are walking through. This said it’s hard to convey how much value Chad and Dave are passing along with all their deep explanations of each of the examples…

Fork me on GitHub