danger-kover 0.0.4 → 0.0.6

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
  SHA256:
3
- metadata.gz: 44a53eb966b795cb6793ffa0d4f2be671a55fc2dd445e35dc473cdcea3d96382
4
- data.tar.gz: 5d775bf7df1da1425092d1af297dd021d34a3f29940c3e973de70731361fb67e
3
+ metadata.gz: 5a31339cebd0e8c845abfd89dccec13c31c2124a09ad214e04ac67f5eed94d63
4
+ data.tar.gz: a6f6123238aee4f5b651ff5b896b55cd2ec1acba5e568125f4b403b1ba9c5168
5
5
  SHA512:
6
- metadata.gz: d5de9eeb0965194cbbeadd598e2207808d51290b27ecb9747e9da44d0b61a320e97f033a2bea72822913bd072a44130a03d12a99bd16e40273375e90bdfe6236
7
- data.tar.gz: c26878612b9780b6f9046afa40bf2500a1d0067c82fcebbd3393eb83290bdbca225ed29ff0fbd8d6f702f93515fd7583f4e0c71433f5d551b925a42c0015d66c
6
+ metadata.gz: d34720bf8656a3f2d20659b10946ba09d63fcf04c631c23ae0d3cf7572805af728681bf8d861b0a7ca9056f8004fe81bdead96d9ae49656b0231875337f70df9
7
+ data.tar.gz: 1d2ad0ee8c95d2d7ef2bf7f7b2656a466cba7717328a0fdec38bd5965fc6f6e1488d7ca0178ccd064d5e22ee20fd5b66696f63abf39bb70bd1b80b87ce8f760f
Binary file
@@ -1,3 +1,3 @@
1
1
  module Kover
2
- VERSION = "0.0.4".freeze
2
+ VERSION = "0.0.6".freeze
3
3
  end
data/lib/kover/plugin.rb CHANGED
@@ -129,15 +129,16 @@ module Danger
129
129
 
130
130
  puts "Here are unreported files"
131
131
  puts fileNamesNotInReport.to_s
132
+
132
133
  puts "Here is the touched files coverage hash"
133
134
  puts touchedFilesHash
134
135
 
135
- output = "### 🎯 #{moduleName} Code Coverage: **`#{'%.2f' % coveragePercent}%`**\n"
136
+ output = "### 🎯 #{moduleName} Code Coverage: **`#{'%.2f' % coveragePercent}%`**\n\n"
136
137
 
137
138
  if touchedFilesHash.empty?
138
139
  output << "The new and updated files are not part of this module coverage report 👀.\n"
139
140
  else
140
- output << "**Modified files:**\n"
141
+ output << "**Modified files:**\n\n"
141
142
  output << "File | Coverage\n"
142
143
  output << ":-----|:-----:\n"
143
144
  end
@@ -154,6 +155,9 @@ module Danger
154
155
  end
155
156
  end
156
157
 
158
+ puts "Value of count_not_found: #{count_not_found}"
159
+ puts "Value of link_repository: #{link_repository}"
160
+
157
161
  if (count_not_found)
158
162
  output << "\n\n"
159
163
  output << "Number of files not found in coverage report: #{fileNamesNotInReport.size}."
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: danger-kover
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - andrewhaisting
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-22 00:00:00.000000000 Z
11
+ date: 2023-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: danger-plugin-api
@@ -185,6 +185,7 @@ files:
185
185
  - danger-kover-0.0.1.gem
186
186
  - danger-kover-0.0.2.gem
187
187
  - danger-kover-0.0.3.gem
188
+ - danger-kover-0.0.4.gem
188
189
  - danger-kover.gemspec
189
190
  - images/bannerImage.png
190
191
  - lib/danger_plugin.rb