lcoveralls 0.2.1 → 0.2.3

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
- SHA1:
3
- metadata.gz: d0c9bd7194eacaa34d4a4b7807d52e8ecd7a63a3
4
- data.tar.gz: d11970a20b435df71e2240ab84298837a4bae026
2
+ SHA256:
3
+ metadata.gz: b48146c514f11e39db20cd9ff8ead89da29d56fe9daa19352c3c8b644bdf34a8
4
+ data.tar.gz: 8d86f25fb5819e02585311ca1effa5035e4cce8e6661e85b594276fcb1129f82
5
5
  SHA512:
6
- metadata.gz: 22465ce1dae3391942e4320db348bd580d5c558e09bb8d5ee441ec12214fdd97b55a85a1f8063fe192946728eb6d39c69d97071ff8a9e7c0d3928ba1850826a3
7
- data.tar.gz: fa00460c548f6427b8503ba18d03f88443357b3f59f5e25ec5b929422f5202f3d5d1b0c158d15204119c8c59bdaeaff250e631f8b0249eef5fbb07447d2bb18d
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
@@ -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
- # supplies LCOV tracefiles, that reside within the specified repository
105
+ # supplied LCOV tracefiles, that reside within the specified repository
106
106
  # root directory.
107
107
  #
108
- # @param info_file [Array] LCOV tracefiles containing source files to load.
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 Coveralla API structure.
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.1
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: 2010-04-28 00:00:00.000000000 Z
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.4.1
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