LINK
Wish you could write your Ruby in XML? Has the fact that Ruby is not “enterprise” got you down? Do you feel like your Ruby code could be made to be more “scalable”? Well look no further my friend. You’ve found the enterprise gem. Once you install this gem, you too can make Rails scale, Ruby faster, your code more attractive, and have more XML in your life.
tinyrb is the smallest Ruby VM to date. It won’t run all your Ruby code, but it’s fast and fun to play with.
First commit of my port of Hpricot to IronRuby.
Hell yeah!
# an ugly way... way too ugly!
a = row[0]
b = row[1]
c = row[2]
# slightly better, but still a bit ugly
a, b, c = row[0], row[1], row[2]
# using ranges: easy, shorter and rubyish
a, b, c = row[0..2]