class Sketch::Path
Public Instance Methods
svg_attributes()
click to toggle source
Calls superclass method
Sketch::Base#svg_attributes
# File lib/sketch/path.rb, line 9 def svg_attributes out = super out['d'] = out['d'].join(' ') if out.has_key('d') end