Class: BootstrapEmail::Converter::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/bootstrap-email/converters/base.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(doc) ⇒ Base

Returns a new instance of Base.



8
9
10
11
# File 'lib/bootstrap-email/converters/base.rb', line 8

def initialize(doc)
  @doc = doc
  @cached_templates = {}
end

Instance Attribute Details

#docObject (readonly)

Returns the value of attribute doc.



6
7
8
# File 'lib/bootstrap-email/converters/base.rb', line 6

def doc
  @doc
end

Class Method Details

.build(doc, *args) ⇒ Object



13
14
15
# File 'lib/bootstrap-email/converters/base.rb', line 13

def self.build(doc, *args)
  new(doc).build(*args)
end