Class: BootstrapEmail::Converter::Spacer
- Defined in:
- lib/bootstrap-email/converters/spacer.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from BootstrapEmail::Converter::Base
Instance Method Details
#build ⇒ Object
6 7 8 9 10 |
# File 'lib/bootstrap-email/converters/spacer.rb', line 6 def build each_node('*[class*=s-]') do |node| node.replace(template('table', classes: "#{node['class']} w-full", contents: ' ')) end end |