0.0
No commit activity in last 3 years
No release in over 3 years
Oj formatter for SimpleCov code coverage tool for ruby 2.4+
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 2.0, < 5.0
~> 0.14, < 1.0.0
 Project Readme

simplecov-sublime

Maintainability Test Coverage

JSON formatter for the ruby 2.5+ code coverage gem SimpleCov

Usage

  1. Add simplecov-sublime to your Gemfile and bundle install:
gem 'simplecov-sublime', require: false, group: :test
  1. Require simplecov-sublime and set it up as SimpleCov's formatter:
require 'simplecov-sublime'
SimpleCov.formatter = SimpleCov::Formatter::SublimeFormatter

Result

Generated JSON can be found in coverage/sublime.json

The format you can expect is:

{
  "timestamp": 1348489587,
  "command_name": "RSpec",
  "files": [
    {
      "filename": "/home/user/rails/environment.rb",
      "covered_percent": 50.0,
      "coverage": [
        null,
        1,
        null,
        null,
        1
      ],
      "covered_strength": 0.50,
      "covered_lines": 2,
      "lines_of_code": 4
    },
  ],
  "metrics": {
    "covered_percent": 81.70731707317073,
    "covered_strength": 0.8170731707317073,
    "covered_lines": 67,
    "total_lines": 82
  }
}

Making Contributions

If you want to contribute, please:

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Send me a pull request on Github.
  • Check that travis build passes for your pull request.

Copyright

Copyright (c) 2020 Mikael Henriksson. See LICENSE for details.