rspec-blame 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/rspec-blame.gemspec +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2b131572f2575e37af96e3ba1657f1cfbc78bc15
4
- data.tar.gz: 2f16ccd3a4fc75fe14fe0ebff5e05d1b52dcfbf9
3
+ metadata.gz: 6814a67f7cea4c1cb8040ea1d9c914fdd5123829
4
+ data.tar.gz: c06cd995f438b50420337f2585ccadfb5352ef87
5
5
  SHA512:
6
- metadata.gz: 2dc22e8a4ef94d62291e9f4eb27359d1cdbdbe39ee6db6df78d7471aac1ccae15b83b52431c8b7f9ec7d5a14c086c6eb50ff76127ba477ed86c03bad4388ad6d
7
- data.tar.gz: 7447dcebd308f8b797fcfb313f9dc7cbf1c0051db2c30486ebad56c15e5b1373992074be8a595433a607ab71fa14ac8c2d5ceacd6757336d5557d455a212d917
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, and
4
- commit date for the slowest examples when profiling with RSpec in a **git** project. It
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 faciliate good practices
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/spec_herlper.rb`:
69
+ threshold by adding the following to `spec/spec_helper.rb`:
70
70
 
71
71
  ```
72
72
  RSpec.configure do |config|
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "rspec-blame"
3
- s.version = "0.2.0"
3
+ s.version = "0.2.1"
4
4
  s.license = "MIT"
5
5
 
6
6
  s.authors = ["David Seeto"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-blame
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Seeto