bibliothecary 6.9.8 → 6.10.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/bin/console +2 -2
- data/lib/bibliothecary/parsers/maven.rb +14 -0
- data/lib/bibliothecary/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f69e23d022b216f39433b7628672b1ba5556815ba5df6d96718280e8728f53c8
|
|
4
|
+
data.tar.gz: 80e4095a6325c6b6589b1ce7be6fbe290b238522d81a45b7faceb462f5167a2c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c6f9d2e2fa68ead83476b974595eb4e6251cd27b8f72751e928e39607dd6184f74e0c5c367bd058a8772195c533b1f4c07d3b72c4fd4d8582464ebc5e38834b
|
|
7
|
+
data.tar.gz: ed8ab5fe2320cda2c4decddeaf0b4442169a91f8369e9ee1ca8fda56724aed8117613f2fbbd33503ec51d8288aa66844aa56c12ff4c2e15d90d37457efd8d423
|
data/bin/console
CHANGED
|
@@ -60,6 +60,10 @@ module Bibliothecary
|
|
|
60
60
|
match_filename("sbt-update-full.txt", case_insensitive: true) => {
|
|
61
61
|
kind: 'lockfile',
|
|
62
62
|
parser: :parse_sbt_update_full
|
|
63
|
+
},
|
|
64
|
+
match_filename("maven-dependency-tree.txt", case_insensitive: true) => {
|
|
65
|
+
kind: 'lockfile',
|
|
66
|
+
parser: :parse_maven_tree
|
|
63
67
|
}
|
|
64
68
|
}
|
|
65
69
|
end
|
|
@@ -148,6 +152,16 @@ module Bibliothecary
|
|
|
148
152
|
.compact
|
|
149
153
|
.uniq
|
|
150
154
|
end
|
|
155
|
+
def self.parse_maven_tree(file_contents)
|
|
156
|
+
captures = file_contents.scan(/\s([\w.-]+:[\w.-]+:[\w.-]+:[\w.-]+:[a-zA-Z]+)/).flatten.uniq
|
|
157
|
+
captures.map do |item|
|
|
158
|
+
{
|
|
159
|
+
name: item.split(":")[0..1].join(":"),
|
|
160
|
+
requirement: item.split(":")[3],
|
|
161
|
+
type: item.split(":")[-1]
|
|
162
|
+
}
|
|
163
|
+
end
|
|
164
|
+
end
|
|
151
165
|
|
|
152
166
|
def self.parse_resolved_dep_line(line)
|
|
153
167
|
dep_parts = line.strip.split(":")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bibliothecary
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.
|
|
4
|
+
version: 6.10.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Nesbitt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-03-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: toml-rb
|
|
@@ -288,7 +288,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
288
288
|
- !ruby/object:Gem::Version
|
|
289
289
|
version: '0'
|
|
290
290
|
requirements: []
|
|
291
|
-
rubygems_version: 3.
|
|
291
|
+
rubygems_version: 3.0.3
|
|
292
292
|
signing_key:
|
|
293
293
|
specification_version: 4
|
|
294
294
|
summary: Find and parse manifests
|