codeclimate-test-reporter 0.0.4 → 0.0.5
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.
- data/README.md +3 -1
- data/codeclimate-test-reporter.gemspec +1 -1
- data/lib/codeclimate-test-reporter.rb +1 -1
- metadata +10 -4
data/README.md
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
Collects test coverage data from your Ruby test suite and sends it to Code
|
|
4
4
|
Climate's hosted, automated code review service. Based on SimpleCov.
|
|
5
5
|
|
|
6
|
+
**Note:** Code Climate's test coverage functionality is currently in private beta. If you are interested in volunteering for the beta, please contact us at hello@codeclimate.com .
|
|
7
|
+
|
|
6
8
|
Code Climate - [https://codeclimate.com](https://codeclimate.com)
|
|
7
9
|
|
|
8
10
|
## Installation
|
|
@@ -24,7 +26,7 @@ Then set the `CODECLIMATE_REPO_TOKEN` environment variable when you run your bui
|
|
|
24
26
|
on your CI server, and the results will show up in your Code Climate account.
|
|
25
27
|
|
|
26
28
|
The `CODECLIMATE_REPO_TOKEN` value is provided after you add your repo to your
|
|
27
|
-
Code Climate account.
|
|
29
|
+
Code Climate account if you are in the test coverage private beta.
|
|
28
30
|
|
|
29
31
|
Please contact hello@codeclimate.com if you need any assistance setting this up.
|
|
30
32
|
|
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
spec.require_paths = ["lib"]
|
|
19
19
|
|
|
20
|
-
spec.add_dependency "simplecov", "
|
|
20
|
+
spec.add_dependency "simplecov", ">= 0.7.1", "< 1.0.0"
|
|
21
21
|
spec.add_development_dependency "bundler", "~> 1.3"
|
|
22
22
|
spec.add_development_dependency "rake"
|
|
23
23
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: codeclimate-test-reporter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,24 +9,30 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-07-
|
|
12
|
+
date: 2013-07-28 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: simplecov
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
|
-
- -
|
|
19
|
+
- - ! '>='
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
21
|
version: 0.7.1
|
|
22
|
+
- - <
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: 1.0.0
|
|
22
25
|
type: :runtime
|
|
23
26
|
prerelease: false
|
|
24
27
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
28
|
none: false
|
|
26
29
|
requirements:
|
|
27
|
-
- -
|
|
30
|
+
- - ! '>='
|
|
28
31
|
- !ruby/object:Gem::Version
|
|
29
32
|
version: 0.7.1
|
|
33
|
+
- - <
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: 1.0.0
|
|
30
36
|
- !ruby/object:Gem::Dependency
|
|
31
37
|
name: bundler
|
|
32
38
|
requirement: !ruby/object:Gem::Requirement
|