Skip to content

Commit b0111ff

Browse files
committed
Release v0.8.0
1 parent 22da8d8 commit b0111ff

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rspec-tracer (0.7.0)
4+
rspec-tracer (0.8.0)
55
docile (~> 1.1, >= 1.1.0)
66
rspec-core (~> 3.6, >= 3.6.0)
77

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
![](./readme_files/rspec_tracer.png)
22

3+
[![Maintainability](https://api.codeclimate.com/v1/badges/eabce2757839c08d8f8d/maintainability)](https://codeclimate.com/github/avmnu-sng/rspec-tracer/maintainability)
4+
[![Test Coverage](https://api.codeclimate.com/v1/badges/eabce2757839c08d8f8d/test_coverage)](https://codeclimate.com/github/avmnu-sng/rspec-tracer/test_coverage)
5+
[![Gem Version](https://badge.fury.io/rb/rspec-tracer.svg)](https://badge.fury.io/rb/rspec-tracer)
6+
37
RSpec Tracer is a **specs dependency analyzer**, **flaky tests detector**, **tests accelerator**,
48
and **coverage reporter** tool. It maintains a list of files for each test, enabling
59
itself to skip tests in the subsequent runs if none of the dependent files are changed.
@@ -89,7 +93,7 @@ These reports provide information on the total number of tests that will run aft
8993

9094
1. Add this line to your `Gemfile` and `bundle install`:
9195
```ruby
92-
gem 'rspec-tracer', '~> 0.7', group: :test, require: false
96+
gem 'rspec-tracer', '~> 0.8', group: :test, require: false
9397
```
9498

9599
And, add the followings to your `.gitignore`:

lib/rspec_tracer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RSpecTracer
4-
VERSION = '0.7.0'
4+
VERSION = '0.8.0'
55
end

0 commit comments

Comments
 (0)