Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ansi2json.rb « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79114d35916cc46aff83b225c3fcef3e47fe0719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

# Convert terminal stream to JSON
module Gitlab
  module Ci
    module Ansi2json
      def self.convert(ansi, state = nil)
        Converter.new.convert(ansi, state)
      end
    end
  end
end