1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
module Scale class Rectangle include Node attribute :width, String attribute :height, String attribute :fill, String attribute :x, Integer attribute :y, Integer attribute :rx, Integer attribute :ry, Integer def xml_tag :rect end end end