I am looking for a structure like:
my_obj = boxWidget.new
with my_obj do
x = 0
y = 10
width = 100
height = 100
end
instead of having to say
my_obj = boxWidget.new
my_obj.x = 0
my_obj.y = 10
my_obj.width = 100
my_obj.height = 100
Can you do this already? If not....anyone support an RCR for it besides me?
Zach