Class: InlineSvg::TransformPipeline::Transformations::DataAttributes
- Inherits:
-
Transformation
- Object
- Transformation
- InlineSvg::TransformPipeline::Transformations::DataAttributes
- Defined in:
- lib/inline_svg/transform_pipeline/transformations/data_attributes.rb
Instance Attribute Summary
Attributes inherited from Transformation
Instance Method Summary collapse
Methods inherited from Transformation
create_with_value, #initialize, #with_svg
Constructor Details
This class inherits a constructor from InlineSvg::TransformPipeline::Transformations::Transformation
Instance Method Details
#transform(doc) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/inline_svg/transform_pipeline/transformations/data_attributes.rb', line 3 def transform(doc) with_svg(doc) do |svg| with_valid_hash_from(self.value).each_pair do |name, data| svg["data-#{dasherize(name)}"] = data end end end |