# File lib/cucumber/core/gherkin/writer/helpers.rb, line 72 def self.included(base) base.extend HasElementBuilders end
# File lib/cucumber/core/gherkin/writer/helpers.rb, line 76 def build(source = []) elements.inject(source + statements) { |acc, el| el.build(acc) } end
# File lib/cucumber/core/gherkin/writer/helpers.rb, line 81 def elements @elements ||= [] end