rspec-blame 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/rspec-blame.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6814a67f7cea4c1cb8040ea1d9c914fdd5123829
|
4
|
+
data.tar.gz: c06cd995f438b50420337f2585ccadfb5352ef87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9cf907633db9887c0f8b479325f2b7383a62b79956a43018596a87811d15337f658366bc10ba5b2cdbda3ba31fd36293929593d90de4388cc0256b2b3964de57
|
7
|
+
data.tar.gz: 7b2cbf7d7b0ebabea5dbe677dae1d226e2ffb8f2050e10b98ceb9a2bcc298d05ae2de19b9f96c1bf181268d824c7f6bee677033da65a6ce432680e936113784e
|
data/README.md
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# rspec-blame
|
2
2
|
|
3
|
-
rspec-blame provides a Blame RSpec formatter that outputs the author, commit hash
|
4
|
-
|
3
|
+
rspec-blame provides a Blame RSpec formatter that outputs the author, date, and commit hash
|
4
|
+
for the slowest examples when profiling with RSpec in a **git** project. It
|
5
5
|
also allows a profile threshold to be set, only printing examples that exceed the threshold.
|
6
6
|
|
7
7
|
### Goals
|
8
8
|
|
9
9
|
In an application that has good test coverage and is managed by multiple people, tests are
|
10
10
|
constantly added and executed. Often, code that result in slow tests can make the development
|
11
|
-
process slow as well. To avoid this problem, this gem attempts to
|
11
|
+
process slow as well. To avoid this problem, this gem attempts to facilitate good practices
|
12
12
|
through accomplishing the following goals:
|
13
13
|
|
14
14
|
* Output the commit information of the slow tests, allowing the developer who last touched it
|
@@ -66,7 +66,7 @@ gem "rspec-blame"
|
|
66
66
|
```
|
67
67
|
|
68
68
|
After including the above line in your Gemfile and running `bundle install`, you may set a profile
|
69
|
-
threshold by adding the following to `spec/
|
69
|
+
threshold by adding the following to `spec/spec_helper.rb`:
|
70
70
|
|
71
71
|
```
|
72
72
|
RSpec.configure do |config|
|
data/rspec-blame.gemspec
CHANGED