Skip to content

Commit aebc270

Browse files
committed
Release v0.9.0
1 parent e70e865 commit aebc270

File tree

6 files changed

+23
-9
lines changed

6 files changed

+23
-9
lines changed

.rubocop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ require:
66
AllCops:
77
NewCops: enable
88
Exclude:
9+
- "rspec-tracer.gemspec"
910
- "sample_projects/**/*"
1011
- "tmp/**/*"
1112
- "vendor/**/*"

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [0.9.0] - 2021-09-15
2+
3+
### Added
4+
5+
- Handling all examples filtered by RSpec (#34)
6+
- Warn on incorrect analysis to stop using RSpec Tracer (#35)
7+
- Run `SimpleCov.at_exit` hook (#36)
8+
19
## [0.8.0] - 2021-09-13
210

311
### Fixed

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.8.0)
4+
rspec-tracer (0.9.0)
55
docile (~> 1.1, >= 1.1.0)
66
rspec-core (~> 3.6, >= 3.6.0)
77

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ These reports provide information on the total number of tests that will run aft
9494

9595
1. Add this line to your `Gemfile` and `bundle install`:
9696
```ruby
97-
gem 'rspec-tracer', '~> 0.8', group: :test, require: false
97+
gem 'rspec-tracer', '~> 0.9', group: :test, require: false
9898
```
9999

100100
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.8.0'
4+
VERSION = '0.9.0'
55
end

rspec-tracer.gemspec

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,17 @@ Gem::Specification.new do |spec|
1111
spec.email = ['abhisinghabhimanyu@gmail.com']
1212

1313
spec.homepage = 'https://github.com/avmnu-sng/rspec-tracer'
14-
spec.summary = 'RSpec Tracer is a specs dependency analysis tool and a test skipper for RSpec'
15-
spec.description = <<-DESC.strip.gsub(/\s+/, ' ')
16-
RSpec Tracer is a specs dependency analysis tool and a test skipper for RSpec.
17-
It maintains a list of files for each test, enabling itself to skip tests in
18-
the subsequent runs if none of the dependent files are changed.
19-
DESC
14+
spec.summary = <<-SUMMARY.strip.gsub(/\s+/, ' ')
15+
RSpec Tracer is a specs dependency analyzer, flaky tests detector, tests
16+
accelerator, and coverage reporter tool.
17+
SUMMARY
18+
spec.description = <<-DESCRIPTION.strip.gsub(/\s+/, ' ')
19+
RSpec Tracer is a specs dependency analyzer, flaky tests detector, tests
20+
accelerator, and coverage reporter tool for RSpec. It maintains a list of
21+
files for each test, enabling itself to skip tests in the subsequent runs
22+
if none of the dependent files are changed. It uses Ruby's built-in coverage
23+
library to keep track of the coverage for each test
24+
DESCRIPTION
2025
spec.license = 'MIT'
2126

2227
spec.metadata['homepage_uri'] = spec.homepage

0 commit comments

Comments
 (0)