Class: QED::Template

Inherits:
Object show all
Defined in:
lib/qed/document.rb

Overview

Document Template

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(template, spec, title, css) ⇒ Template

Returns a new instance of Template.



259
260
261
262
263
264
# File 'lib/qed/document.rb', line 259

def initialize(template, spec, title, css)
  @template = template
  @spec     = spec
  @title    = title
  @css      = css
end

Instance Attribute Details

#cssObject (readonly)

Returns the value of attribute css.



256
257
258
# File 'lib/qed/document.rb', line 256

def css
  @css
end

#specObject (readonly)

Returns the value of attribute spec.



254
255
256
# File 'lib/qed/document.rb', line 254

def spec
  @spec
end

#titleObject (readonly)

Returns the value of attribute title.



255
256
257
# File 'lib/qed/document.rb', line 255

def title
  @title
end

Instance Method Details

#parse_templateObject



266
267
268
269
# File 'lib/qed/document.rb', line 266

def parse_template
  erb = ERB.new(@template)
  erb.result(binding)
end