Sha256: 51ef8312c654ee00a39a8fc455a493d1dc88d1964f11aecc9bfb78621f06d189
Contents?: true
Size: 339 Bytes
Versions: 40
Compression:
Stored size: 339 Bytes
Contents
module Coverage class RcovFormatter < SimpleCov::Formatter::RcovFormatter private def write_file(template, output_filename, binding) rcov_result = template.result( binding ).force_encoding('UTF-8') File.open( output_filename, "w" ) do |file_result| file_result.write rcov_result end end end end
Version data entries
40 entries across 40 versions & 1 rubygems