Sha256: ba36cf30b9d7033d28773b86518812dc290b5809f5c583471c923909968c9640
Contents?: true
Size: 253 Bytes
Versions: 23
Compression:
Stored size: 253 Bytes
Contents
module InlineSvg::TransformPipeline::Transformations class Height < Transformation def transform(doc) doc = Nokogiri::XML::Document.parse(doc.to_html) svg = doc.at_css 'svg' svg['height'] = self.value doc end end end
Version data entries
23 entries across 23 versions & 1 rubygems