My code looks like this
# record[field_name] = get_children(field_name)
eval "record.#{field_name} = get_children(field_name)"
record is an ActiveRecord subclass, and the field in question is a has_a relationship. The commented line does not work (though it seems to, but the assign does not take place).
How can I do this without eval?