class Rasem::SVGRaw
inherit from tag for basic functionality, control raw data using the write method
Public Class Methods
new(img, data)
click to toggle source
# File lib/rasem/svg_image.rb, line 405 def initialize(img, data) @img = img @data = data end
Public Instance Methods
write(output)
click to toggle source
# File lib/rasem/svg_image.rb, line 411 def write(output) output << @data.to_s end