class Cucumber::Core::Gherkin::Writer::DocString

def build(source)

def build(source)
  source + statements
end

def doc_string_statement

def doc_string_statement
  [
    %("""#{content_type}),
    strings,
    '"""'
  ]
end

def initialize(string, content_type)

def initialize(string, content_type)
  @strings = string.split("\n").map(&:strip)
  @content_type = content_type
end

def statements

def statements
  prepare_statements doc_string_statement
end