codeclimate-test-reporter 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5178637634549cf9582b2157406010d9be7b5fd2
4
- data.tar.gz: 35d82de9aa353cf145183f4c612f7e1ee7f221ed
3
+ metadata.gz: 2ab7eb526172b9b5b5daa3aa5ac47f871a11cc3a
4
+ data.tar.gz: c3c9c4422f64ff1ed1143784abd42b913031cf3b
5
5
  SHA512:
6
- metadata.gz: e0689fc31b7bcb21b8bc7ce529c2dfb98c45d01596b04c16a1da5b9ed076297dcb2949bb9e3f4012e5bd97476b6d6cf4508f121e021c0bb8ba65535787f19ac6
7
- data.tar.gz: 7565a72528d0493ed30dd29b3b4869050e5984ad04389a79e47ed87a6ec121f4c61a37b2c814017487b663b96d18e856b1ae5b848fc5f7c07b32a5967f86f0e4
6
+ metadata.gz: 9838a08aa48a7e89842e243d42bd2524845c9a380c9d59c6307aa75dbbeecf90f95f012fc291fe385a7e2e81ecf882082d90d94e60d9a082fa8127b7943c6e09
7
+ data.tar.gz: e826083e48bfb51f718465afbbc9b9b03c3f2460ebbae007bfbe80f84e307efd2639f08cd796edc7b29a9a6f443d91b1980fae692c5f5d14e2120475d92e8204
data/README.md CHANGED
@@ -51,8 +51,26 @@ differences:
51
51
 
52
52
  * Previously, this gem extended `Simplecov` with a custom formatter which posted
53
53
  results to Code Climate. Now, you are responsible for executing `Simplecov`
54
- yourself, and then running `codeclimate-test-reporter` as a separate step in
55
- your build.
54
+ yourself.
55
+
56
+ * If you already have the following in your test/test_helper.rb
57
+ (or spec_helper.rb, cucumber env.rb, etc)
58
+
59
+ ```ruby
60
+ require 'codeclimate-test-reporter'
61
+ CodeClimate::TestReporter.start
62
+ ```
63
+
64
+ then you should replace it with
65
+
66
+ ```ruby
67
+ require 'simplecov'
68
+ SimpleCov.start
69
+ ```
70
+
71
+ * Previously, the `codeclimate-test-reporter` automatically uploaded results at
72
+ the end of your test suite. Now, you are responsible for running
73
+ `codeclimate-test-reporter` as a separate step in your build.
56
74
  * Previously, this gem added some exclusion rules tuned according to feedback
57
75
  from its users, and now these no longer happen automatically. *If you are
58
76
  experiencing a discrepancy in test coverage % after switching to the new gem
@@ -3,8 +3,8 @@ module CodeClimate
3
3
  WARNING_MESSAGE = <<-EOS.freeze
4
4
  This usage of the Code Climate Test Reporter is now deprecated. Since version
5
5
  1.0, we now require you to run `SimpleCov` in your test/spec helper, and then
6
- run the provided `codeclimate-ruby` binary separately to report your results
7
- to Code Climate.
6
+ run the provided `codeclimate-test-reporter` binary separately to report your
7
+ results to Code Climate.
8
8
 
9
9
  More information here: https://github.com/codeclimate/ruby-test-reporter/blob/master/README.md
10
10
  EOS
@@ -1,5 +1,5 @@
1
1
  module CodeClimate
2
2
  module TestReporter
3
- VERSION = "1.0.0".freeze
3
+ VERSION = "1.0.1".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: codeclimate-test-reporter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryan Helmkamp
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-04 00:00:00.000000000 Z
11
+ date: 2016-11-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simplecov