codeclimate-collector-manager 0.0.3 → 0.0.4
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/VERSION +1 -1
- data/lib/codeclimate/collectors/messages/message.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ec662d0d5c27d3a68f9afc3a9e98d2cf4c5d657c67fa5de189a6319e74af2b25
|
|
4
|
+
data.tar.gz: 511f42b1c9c20407f9355b95dde13cc72d571d19c7ed0f2f3ad1c8eb71b98faf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22707f158799a35600f6b468658a4c5fb12a679a90ca0178ac59282d1cb23a1c4c3e97ca243152a5badbc2e39591dd296acee2218a9ff776e216ff27f049f6ea
|
|
7
|
+
data.tar.gz: 6073fe4b1ac3e3324b90d867bfc2f19e40336a15644428ef6a8d0acc15f25c502a6806a202d366a82a229a8f299d6147a4f391241c998e460deda03115c74254
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.4
|
|
@@ -27,7 +27,7 @@ module Codeclimate
|
|
|
27
27
|
# Calculate the type string to use in the JSON representation to
|
|
28
28
|
# identify this message type.
|
|
29
29
|
def self.json_type
|
|
30
|
-
to_s.gsub(/^.+::(\w+)$/, "\\1")
|
|
30
|
+
to_s.gsub(/^.+::(\w+)$/, "\\1")
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
# Messages can have ordering dependencies, e.g. a collector could emit
|