Sha256: 7f5dd006728ff59a9b5075251685a9e1e24ca1ebb7db9aa2508479e8e0c65d22
Contents?: true
Size: 380 Bytes
Versions: 4
Compression:
Stored size: 380 Bytes
Contents
module Bizside 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 end
Version data entries
4 entries across 4 versions & 1 rubygems