module Sketch::Base
Public Instance Methods
svg_attributes()
click to toggle source
# File lib/sketch/base.rb, line 2 def svg_attributes out = {} #svg is heavy in dashes. Ruby symbols can't handle them. attributes.each do |name, value| next if name == :data out[name.to_s.gsub('_', '-')] = value end if attributes.has_key?( :data ) attributes[:data].each do |name, value| out["data-#{name.to_s.gsub('_', '-')}"] = value end end out['class'] = out.delete('klass') if out.has_key?('klass') out end