Skip to content

Commit

Permalink
Release v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
avmnu-sng committed Sep 13, 2021
1 parent 22da8d8 commit b0111ff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rspec-tracer (0.7.0)
rspec-tracer (0.8.0)
docile (~> 1.1, >= 1.1.0)
rspec-core (~> 3.6, >= 3.6.0)

Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
![](./readme_files/rspec_tracer.png)

[![Maintainability](https://api.codeclimate.com/v1/badges/eabce2757839c08d8f8d/maintainability)](https://codeclimate.com/github/avmnu-sng/rspec-tracer/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/eabce2757839c08d8f8d/test_coverage)](https://codeclimate.com/github/avmnu-sng/rspec-tracer/test_coverage)
[![Gem Version](https://badge.fury.io/rb/rspec-tracer.svg)](https://badge.fury.io/rb/rspec-tracer)

RSpec Tracer is a **specs dependency analyzer**, **flaky tests detector**, **tests accelerator**,
and **coverage reporter** tool. It maintains a list of files for each test, enabling
itself to skip tests in the subsequent runs if none of the dependent files are changed.
Expand Down Expand Up @@ -89,7 +93,7 @@ These reports provide information on the total number of tests that will run aft

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

And, add the followings to your `.gitignore`:
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec_tracer/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module RSpecTracer
VERSION = '0.7.0'
VERSION = '0.8.0'
end

0 comments on commit b0111ff

Please sign in to comment.