dragnet 5.3.0 → 5.3.1
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/CHANGELOG.md +6 -0
- data/lib/dragnet/repository.rb +2 -1
- data/lib/dragnet/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19b50e11d8b26487968d95585c7efa8eb4b1db0ce0f7d2d23ce410d0c1bbe53f
|
4
|
+
data.tar.gz: 6fb964ca6fc17b3b4c5793c3de4a4a23f7e13883167b802bb200adbdea85a987
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 81c5227aeb18c6382e4e42b0adc3417808755d0d984ae7b4c2be9fc5ae3a24960c7fa45497817e781380112f6d7a57b4de7b9ec8025c59e114c72424a6935e92
|
7
|
+
data.tar.gz: 7a86e7800e1aa950963e14ea50dd4ee07e52cecaa390519021ac2de872fc794fbdaea887dcb5945c21c3c9e49e20a811f26ea4f4919dc7436fe9ba941f0cfc89
|
data/CHANGELOG.md
CHANGED
@@ -8,6 +8,12 @@ Please mark backwards incompatible changes with an exclamation mark at the start
|
|
8
8
|
|
9
9
|
## [Unreleased]
|
10
10
|
|
11
|
+
## [5.3.1] - 2024-12-13
|
12
|
+
|
13
|
+
### Fixed
|
14
|
+
- Dragnet no longer crashes when generating an HTML report for a repository
|
15
|
+
hosted on Github.
|
16
|
+
|
11
17
|
## [5.3.0] - 2024-12-03
|
12
18
|
|
13
19
|
### Added
|
data/lib/dragnet/repository.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require 'forwardable'
|
4
|
+
require 'git/url'
|
4
5
|
|
5
6
|
require_relative 'base_repository'
|
6
7
|
|
@@ -36,7 +37,7 @@ module Dragnet
|
|
36
37
|
#
|
37
38
|
# @return [String] The URI path of the repository
|
38
39
|
def remote_uri_path
|
39
|
-
|
40
|
+
Git::URL.parse(git.remotes.first.url).path
|
40
41
|
end
|
41
42
|
|
42
43
|
# @return [FalseClass] It always returns false
|
data/lib/dragnet/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dragnet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.3.
|
4
|
+
version: 5.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ESR Labs GmbH
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|