How can I set an object attribute dynamically in Ruby e.g.
def set_property(obj, prop_name, prop_value)     #need to do something like > obj.prop_name = prop_value       #we can use eval but I'll prefer a faster/cleaner alternative:     eval "obj.#{prop_name} = #{prop_value}" end 
                Use send:
def set_property(obj, prop_name, prop_value)     obj.send("#{prop_name}=",prop_value) end 
                        Object#instance_variable_set() is what you are looking for, and is the cleaner version of what you wanted.
Example:
your_object = Object.new your_object.instance_variable_set(:@attribute, 'value') your_object # => <Object:0x007fabda110408 @attribute="value">   Ruby documentation about Object#instance_variable_set
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With