No commit activity in last 3 years
No release in over 3 years
Formatter based on simplecov-html that uses inline/embedded assets
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 0.21
 Project Readme

simplecov_html_inline

This is a Ruby gem that contains SimplecovHtmlInline::Formatter, a SimpleCov formatter based on simplecov-html that uses inline/embedded assets (via data URIs).

This is useful for cases such as using continuous integration software that publishes artifacts to a private S3 bucket and lets you view artifacts by responding with a redirect to a signed S3 URL. With simplecov-html, the index.html file won't work because it uses relative URLs for assets, which do not have S3 signatures.

Usage

require 'simplecov'
require 'simplecov_html_inline'

SimpleCov.start do
  formatter SimplecovHtmlInline::Formatter
end