Method: Fat::StandardAnnotationFixture#do_cell

Defined in:
lib/fat/standard_annotation_fixture.rb

#do_cell(cell, column) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
# File 'lib/fat/standard_annotation_fixture.rb', line 32

def do_cell cell, column
  begin
    if column == 4
      cell.body = rendered_output
    else
      super
    end
  rescue Exception => e
    exception cell, e
  end
end