diff options
Diffstat (limited to 'lib/scale/shapes/path.rb')
| -rw-r--r-- | lib/scale/shapes/path.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/scale/shapes/path.rb b/lib/scale/shapes/path.rb new file mode 100644 index 0000000..ea5f7c7 --- /dev/null +++ b/lib/scale/shapes/path.rb @@ -0,0 +1,10 @@ +module Scale + class Path + include Node + attribute :d, String + + def xml_tag + :path + end + end +end |
