Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ GEM
byebug (11.0.1)
codeclimate-engine-rb (0.4.1)
virtus (~> 1.0)
codecov (0.1.16)
json
simplecov
url
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
descendants_tracker (0.0.4)
Expand All @@ -37,6 +41,7 @@ GEM
sexp_processor (~> 4.8)
ice_nine (0.11.2)
jaro_winkler (1.5.4)
json (2.3.0)
kwalify (0.7.2)
launchy (2.4.3)
addressable (~> 2.3)
Expand Down Expand Up @@ -92,6 +97,7 @@ GEM
thread_safe (0.3.6)
tty-which (0.4.2)
unicode-display_width (1.6.0)
url (0.3.2)
virtus (1.0.5)
axiom-types (~> 0.1)
coercible (~> 1.0)
Expand All @@ -104,6 +110,7 @@ PLATFORMS
DEPENDENCIES
bundler (~> 2.0)
byebug (~> 11)
codecov (~> 0.1.16)
minitest (~> 5.8.4)
minitest-around (~> 0.5.0)
rake (~> 10.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![skunk](https://github.com/fastruby/skunk/raw/master/logo.png)


[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](code-of-conduct.md) [![Build Status](https://travis-ci.org/fastruby/skunk.svg?branch=master)](https://travis-ci.org/fastruby/skunk) [![Maintainability](https://api.codeclimate.com/v1/badges/3e33d701ced16eee2420/maintainability)](https://codeclimate.com/github/fastruby/skunk/maintainability) [![Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://rubydoc.info/gems/skunk)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](code-of-conduct.md) [![Build Status](https://travis-ci.org/fastruby/skunk.svg?branch=master)](https://travis-ci.org/fastruby/skunk) [![Maintainability](https://api.codeclimate.com/v1/badges/3e33d701ced16eee2420/maintainability)](https://codeclimate.com/github/fastruby/skunk/maintainability) [![Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://rubydoc.info/gems/skunk) [![codecov](https://codecov.io/gh/fastruby/skunk/branch/master/graph/badge.svg)](https://codecov.io/gh/fastruby/skunk)

A RubyCritic extension to calculate StinkScore for a file or project.

Expand Down
1 change: 1 addition & 0 deletions skunk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Gem::Specification.new do |spec|

spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "byebug", "~> 11"
spec.add_development_dependency "codecov", "~> 0.1.16"
spec.add_development_dependency "minitest", "~> 5.8.4"
spec.add_development_dependency "minitest-around", "~> 0.5.0"
spec.add_development_dependency "rake", "~> 10.0"
Expand Down
2 changes: 2 additions & 0 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
if ENV["COVERAGE"] == "true"
require "simplecov"
require "simplecov-console"
require "codecov"

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
SimpleCov::Formatter::HTMLFormatter,
SimpleCov::Formatter::Console,
SimpleCov::Formatter::Codecov,
]

SimpleCov.start do
Expand Down