No commit activity in last 3 years
No release in over 3 years
Console formatter for SimpleCov
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

simplecov-murmur

Console formatter for SimpleCov

Usage

Gemfile:

  gem 'simplecov-murmur', require: false, group: 'test'

test/test_helper.rb or test/spec_helper.rb:

  require 'simplecov-murmur'

  SimpleCov.formatter = SimpleCov::Formatter::MurMurFormatter
  # or
  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
    SimpleCov::Formatter::MurMurFormatter,
    SimpleCov::Formatter::HTMLFormatter
  ]

Example

  All Files:
    [ 23.53%] lib/tempfile.rb
    [ 30.00%] concern.rb
    [ 36.36%] lib/schedule.rb
    [ 47.88%] app.rb
    [ 58.82%] user.rb
    [ 80.00%] access_point.rb
    [ 83.33%] lib/report.rb
    [ 86.67%] helpers.rb
    [100.00%] config/boot.rb
    [100.00%] lib/date.rb

Mode

  SimpleCov::Formatter::MurMurFormatter.mode = :all
mode target
:all all files
:short without 100% (default)

License

simplecov-murmur is released under the MIT License.