class CukeModeler::Cell

A class modeling a single cell of a row.

Attributes

value[RW]

The value of the cell

Public Class Methods

new(source_text = nil) click to toggle source

Creates a new Cell object and, if source_text is provided, populates the object.

Calls superclass method
# File lib/cuke_modeler/models/cell.rb, line 17
def initialize(source_text = nil)
  super(source_text)

  return unless source_text

  parsed_cell_data = parse_source(source_text)
  populate_cell(self, parsed_cell_data)
end

Public Instance Methods

to_s() click to toggle source

Returns a string representation of this model. For a cell model, this will be Gherkin text that is equivalent to the cell being modeled.

# File lib/cuke_modeler/models/cell.rb, line 28
def to_s
  # Vertical bars and backslashes are special characters that need to be escaped
  @value ? @value.gsub('\\', '\\\\\\').gsub('|', '\|') : ''
end

Private Instance Methods

parse_source(source_text) click to toggle source

It's only considered complex because of how deeply nested cells are in the tree. It's not REALLY complex. rubocop:disable Metrics/AbcSize

# File lib/cuke_modeler/models/cell.rb, line 39
def parse_source(source_text)
  base_file_string = "# language: #{Parsing.dialect}
  #{dialect_feature_keyword}: Fake feature to parse
                        #{dialect_scenario_keyword}:
                          #{dialect_step_keyword} fake step\n"
  source_text = "#{base_file_string}|#{source_text}|"

  parsed_file = Parsing.parse_text(source_text, 'cuke_modeler_stand_alone_cell.feature')

  parsed_file['feature']['elements'].first['steps'].first['table']['rows'].first['cells'].first
end