coveralls 0.6.8 → 0.6.9
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/.ruby-version +1 -1
- data/lib/coveralls/api.rb +2 -2
- data/lib/coveralls/simplecov.rb +1 -1
- data/lib/coveralls/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 751680a4a00bd9050a1fd32c10d1ae1fb16c9575
|
|
4
|
+
data.tar.gz: e01c5f98d05aadbee38bf723d9b986fed8e4a48a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3ad45611e81128afdc44feec71d0d041d1c12230fd3fb35992163259ac2003ce809778af7cdcd5f2de5e2535d258723c94dee19b9963c5ca3623dffae7dbf8a4
|
|
7
|
+
data.tar.gz: 1d7456169096246cbcc3f818aedb764305fe840a33c94a03752aa5512e5cd8debaa4175468804cf342859fceda9b44b9a3b5820c6228422f7e344c8d33e60211
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
2.0.0-p0
|
data/lib/coveralls/api.rb
CHANGED
|
@@ -59,8 +59,8 @@ module Coveralls
|
|
|
59
59
|
config = Coveralls::Configuration.configuration
|
|
60
60
|
if ENV['CI'] || ENV['COVERALLS_DEBUG'] || Coveralls.testing
|
|
61
61
|
Coveralls::Output.puts "[Coveralls] Submiting with config:", :color => "yellow"
|
|
62
|
-
|
|
63
|
-
|
|
62
|
+
output = MultiJson.dump(config, :pretty => true).gsub(/"repo_token": "(.*?)"/,'"repo_token": "[secure]"')
|
|
63
|
+
Coveralls::Output.puts output, :color => "yellow"
|
|
64
64
|
end
|
|
65
65
|
hash.merge(config)
|
|
66
66
|
end
|
data/lib/coveralls/simplecov.rb
CHANGED
|
@@ -92,7 +92,7 @@ module Coveralls
|
|
|
92
92
|
end
|
|
93
93
|
|
|
94
94
|
def output_message(result)
|
|
95
|
-
"Coverage is at #{result.covered_percent.round(2)}%.\nCoverage report sent to Coveralls."
|
|
95
|
+
"Coverage is at #{result.covered_percent.round(2) rescue result.covered_percent.round}%.\nCoverage report sent to Coveralls."
|
|
96
96
|
end
|
|
97
97
|
|
|
98
98
|
def short_filename(filename)
|
data/lib/coveralls/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: coveralls
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Merwin
|
|
@@ -197,7 +197,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
197
197
|
version: '0'
|
|
198
198
|
requirements: []
|
|
199
199
|
rubyforge_project:
|
|
200
|
-
rubygems_version: 2.0.
|
|
200
|
+
rubygems_version: 2.0.0
|
|
201
201
|
signing_key:
|
|
202
202
|
specification_version: 4
|
|
203
203
|
summary: A Ruby implementation of the Coveralls API.
|