Well, add me to the list of Python programmers who are falling in love with Ruby but have a lingering PyAddiction. Like the post about Python's getattr, I'm looking for the Ruby equivalent of doing this:
setattr(obj, 'attribute', value)
where obj is an object instance, attribute is the name of one of the object's attributes as a string, and value is the value of that object. The equivalent code being:
obj.attribute = value
I'm assuming it's possible (because anything possible in Python seems even easier in Ruby now), but can't find documentation of it.