lcoveralls 0.2.1 → 0.2.3
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 +5 -5
- data/lib/lcoveralls/color_formatter.rb +1 -1
- data/lib/lcoveralls/runner.rb +3 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: b48146c514f11e39db20cd9ff8ead89da29d56fe9daa19352c3c8b644bdf34a8
|
|
4
|
+
data.tar.gz: 8d86f25fb5819e02585311ca1effa5035e4cce8e6661e85b594276fcb1129f82
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e00bc3078612db7dab4870416038247e88b5db1cc44b4bdb0473c4cd0c6357266abc77ed6908b7e5646b08d03006e50dec832d4cdfe9f4dde1d8e5918a9d358
|
|
7
|
+
data.tar.gz: af4d24957f362a3a7d7bb052b838ee2447407cb273b935da31377e77c1e4c646375ee86f6a6a6770f9ff2d9b9b15f7670a28c6df57257511a51851678cfd88ce
|
|
@@ -43,7 +43,7 @@ module Lcoveralls
|
|
|
43
43
|
# @param progname [String] Name of the program that generated the message.
|
|
44
44
|
# @param msg [String] The message to format.
|
|
45
45
|
def call(severity, datetime, progname, msg)
|
|
46
|
-
severity.capitalize
|
|
46
|
+
severity = severity.capitalize
|
|
47
47
|
if severity == 'Warn' then severity = 'Warning' end
|
|
48
48
|
|
|
49
49
|
if %w[Warning Error Fatal Unknown].include?(severity) then
|
data/lib/lcoveralls/runner.rb
CHANGED
|
@@ -102,10 +102,10 @@ module Lcoveralls
|
|
|
102
102
|
# Builds a hash of source files matching the Coveralls API.
|
|
103
103
|
#
|
|
104
104
|
# This method will build a Hash containing all source files covered by the
|
|
105
|
-
#
|
|
105
|
+
# supplied LCOV tracefiles, that reside within the specified repository
|
|
106
106
|
# root directory.
|
|
107
107
|
#
|
|
108
|
-
# @param
|
|
108
|
+
# @param info_files [Array] LCOV tracefiles containing source files to load.
|
|
109
109
|
# @param root_dir [String] Repository root directory.
|
|
110
110
|
#
|
|
111
111
|
# @return [Hash] Source files in Coveralls API structure.
|
|
@@ -175,7 +175,7 @@ module Lcoveralls
|
|
|
175
175
|
sources.values
|
|
176
176
|
end
|
|
177
177
|
|
|
178
|
-
# Get git repository information in the
|
|
178
|
+
# Get git repository information in the Coveralls API structure.
|
|
179
179
|
#
|
|
180
180
|
# @param root_dir Git repository root directory.
|
|
181
181
|
#
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lcoveralls
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Colby
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Lcoveralls is a simple script for reporting code coverage results from
|
|
14
14
|
LCOV to Coveralls.
|
|
@@ -46,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
46
46
|
version: '0'
|
|
47
47
|
requirements: []
|
|
48
48
|
rubyforge_project:
|
|
49
|
-
rubygems_version: 2.
|
|
49
|
+
rubygems_version: 2.7.6
|
|
50
50
|
signing_key:
|
|
51
51
|
specification_version: 4
|
|
52
52
|
summary: Report Gcov / LCOV (ie C, C++, Go, etc) code coverage to coveralls.io
|