# File lib/cucumber/formatter/legacy_api/adapter.rb, line 897 def initialize(node) @widths = [] node.describe_to(self) end
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 915 def examples_table(*); end
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 916 def examples_table_row(*); end
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 918 def of(node) # The length of the instantiated steps in --expand mode are currently # not included in the calculation of max => make sure to return >= 1 [1, max - node.name.length - node.keyword.length].max end
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 924 def record_width_of(node) @widths << node.keyword.length + node.name.length + 1 end
# File lib/cucumber/formatter/legacy_api/adapter.rb, line 930 def max @widths.max end