Sha256: aac3850db75503c9f27c38e3e43e96609bc36509b59d3b52aea8d6f9f2021b7a
Contents?: true
Size: 1.59 KB
Versions: 3
Compression:
Stored size: 1.59 KB
Contents
module CukeModeler # A class modeling a single cell of a row. class Cell < Model include Sourceable include Parsing include Parsed # The value of the cell attr_accessor :value # Creates a new Cell object and, if *source_text* is provided, populates # the object. 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 # Returns a string representation of this model. For a cell model, # this will be Gherkin text that is equivalent to the cell being modeled. def to_s # Vertical bars and backslashes are special characters that need to be escaped @value ? @value.gsub('\\', '\\\\\\').gsub('|', '\|') : '' end private # It's only considered complex because of how deeply nested cells are in the tree. It's not REALLY complex. # rubocop:disable Metrics/AbcSize 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 # rubocop:enable Metrics/AbcSize end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cuke_modeler-3.6.0 | lib/cuke_modeler/models/cell.rb |
cuke_modeler-3.5.0 | lib/cuke_modeler/models/cell.rb |
cuke_modeler-3.4.0 | lib/cuke_modeler/models/cell.rb |