Sha256: ddec6d8a0997f1a92a45d40f861f2b1da5a9fb4aac47b0067842ee78f5047efa
Contents?: true
Size: 411 Bytes
Versions: 15
Compression:
Stored size: 411 Bytes
Contents
# frozen_string_literal: true module Jacoco # DOM parser for Jacoco report class DOMParser def self.read_path(path) DOMParser.new.read_path(path) end def self.read_string(string) DOMParser.new.read_string(string) end def read_path(path) file = File.read(path) read_string(file) end def read_string(string) Report.parse(string) end end end
Version data entries
15 entries across 15 versions & 2 rubygems