dependabot-common 0.95.24 → 0.95.25
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/lib/dependabot/git_commit_checker.rb +7 -0
- data/lib/dependabot/shared_helpers.rb +1 -1
- data/lib/dependabot/version.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: 6dea0b039cc46c278b4551427f22378a1b9b34d227c07536c2a7af259176488b
|
|
4
|
+
data.tar.gz: a2d2ef21eeb0b7288b539035bb1b6b4b3fd29e8608889c1a300b4f1794f18805
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15fb012d7c95c1b08d4db2197a7e90e1f0a31afef3e6a80ed0d73661dda6462a1b470390229bfafd4a7ebd259620e901d614af6ae819083969733b6505f8c79e
|
|
7
|
+
data.tar.gz: d78efb4fac26d3d7c66ab77d38ce751c022ef9c634127bc3f2f107183651c52a1f5045021b5b0ea417eded803201d7a17fb905c2fe4eb52fe6928e797419871b
|
|
@@ -203,7 +203,7 @@ module Dependabot
|
|
|
203
203
|
def self.run_shell_command(command)
|
|
204
204
|
start = Time.now
|
|
205
205
|
stdout, process = Open3.capture2e(command)
|
|
206
|
-
time_taken =
|
|
206
|
+
time_taken = Time.now - start
|
|
207
207
|
|
|
208
208
|
# Raise an error with the output from the shell session if the
|
|
209
209
|
# command returns a non-zero status
|
data/lib/dependabot/version.rb
CHANGED