Sha256: 6594cf84054edfc03a5c5604e754468c71358ae1651e599617011196f0b8a364
Contents?: true
Size: 564 Bytes
Versions: 11
Compression:
Stored size: 564 Bytes
Contents
% function_string = hash[:coverage][:functions].to_s % branch_string = hash[:coverage][:branches].to_s % format_string = "%#{[function_string.length, branch_string.length].max}i" <%=@ceedling[:plugin_reportinator].generate_banner("#{GCOV_ROOT_NAME.upcase}: CODE COVERAGE SUMMARY")%> % if (!hash[:coverage][:functions].nil?) FUNCTIONS: <%=sprintf(format_string, hash[:coverage][:functions])%>% % else FUNCTIONS: none % end % if (!hash[:coverage][:branches].nil?) BRANCHES: <%=sprintf(format_string, hash[:coverage][:branches])%>% % else BRANCHES: none % end
Version data entries
11 entries across 11 versions & 1 rubygems