bibliothecary 7.3.4 → 7.3.5
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/README.md +1 -0
- data/lib/bibliothecary/parsers/maven.rb +9 -0
- data/lib/bibliothecary/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c3e4510e233cc6052a908e31f4d60498481c2b940448a2727e8cf89f28fae9b6
|
|
4
|
+
data.tar.gz: fe1fe8895bfae3b445b8c36de74a0285e9121a6fa49fde52bc481bc78d3b8931
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 203d1b6888ea667b5f0cf661f7282239d1736f70547c734fb890e0f58ac43d429e4193bda6977a88ca880a2d7cfbd5c1989442f171e27aa6d583932d83898109
|
|
7
|
+
data.tar.gz: 2fbf1aaee7ba11983db23d163b57d32e2ba195fc2fa1dad71447becba40c3eafabb9a8834a2e5a12a24d42b46424cafc32837ad8c9157478734e1d17c8d9a98d
|
data/README.md
CHANGED
|
@@ -44,6 +44,10 @@ module Bibliothecary
|
|
|
44
44
|
kind: 'manifest',
|
|
45
45
|
parser: :parse_gradle
|
|
46
46
|
},
|
|
47
|
+
match_filename("build.gradle.kts", case_insensitive: true) => {
|
|
48
|
+
kind: 'manifest',
|
|
49
|
+
parser: :parse_gradle_kts
|
|
50
|
+
},
|
|
47
51
|
match_extension(".xml", case_insensitive: true) => {
|
|
48
52
|
content_matcher: :ivy_report?,
|
|
49
53
|
kind: 'lockfile',
|
|
@@ -223,6 +227,11 @@ module Bibliothecary
|
|
|
223
227
|
end.compact
|
|
224
228
|
end
|
|
225
229
|
|
|
230
|
+
def self.parse_gradle_kts(manifest)
|
|
231
|
+
# TODO: the gradle-parser side needs to be implemented for this, coming soon.
|
|
232
|
+
[]
|
|
233
|
+
end
|
|
234
|
+
|
|
226
235
|
def self.gradle_dependency_name(group, name)
|
|
227
236
|
if group.empty? && name.include?(":")
|
|
228
237
|
group, name = name.split(":", 2)
|
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: 7.3.
|
|
4
|
+
version: 7.3.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Nesbitt
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-04-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tomlrb
|
|
@@ -206,7 +206,7 @@ dependencies:
|
|
|
206
206
|
- - ">="
|
|
207
207
|
- !ruby/object:Gem::Version
|
|
208
208
|
version: '0'
|
|
209
|
-
description:
|
|
209
|
+
description:
|
|
210
210
|
email:
|
|
211
211
|
- andrewnez@gmail.com
|
|
212
212
|
executables:
|
|
@@ -275,7 +275,7 @@ homepage: https://github.com/librariesio/bibliothecary
|
|
|
275
275
|
licenses:
|
|
276
276
|
- AGPL-3.0
|
|
277
277
|
metadata: {}
|
|
278
|
-
post_install_message:
|
|
278
|
+
post_install_message:
|
|
279
279
|
rdoc_options: []
|
|
280
280
|
require_paths:
|
|
281
281
|
- lib
|
|
@@ -291,7 +291,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
291
291
|
version: '0'
|
|
292
292
|
requirements: []
|
|
293
293
|
rubygems_version: 3.1.2
|
|
294
|
-
signing_key:
|
|
294
|
+
signing_key:
|
|
295
295
|
specification_version: 4
|
|
296
296
|
summary: Find and parse manifests
|
|
297
297
|
test_files: []
|