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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9cdc8b0bab4370b5ae6a4a6762e3284bf5c2d8dac3ea8245e58951035d23bd3
4
- data.tar.gz: ed8b124a915ef7abc4453b0108e0ddbf491b5e1958f6e44df592ba3386a7de58
3
+ metadata.gz: c3e4510e233cc6052a908e31f4d60498481c2b940448a2727e8cf89f28fae9b6
4
+ data.tar.gz: fe1fe8895bfae3b445b8c36de74a0285e9121a6fa49fde52bc481bc78d3b8931
5
5
  SHA512:
6
- metadata.gz: 337ad0b7fb2585f5d557458176be1933ba89c0be4863486a310e3e7cc4cce6b230b0461b42bbca4e76f058e6a10031e24799f8a6d72adc49d0ff30f7bc1cd257
7
- data.tar.gz: f4a6b28b6e815a255fa6e7e2917df95b70204bb657b2a92c58f8d85badfe71cbe1f7e83c43fbe23fdc53f016cc3b417c4de47832841d7105e3b3f5f4295ca57d
6
+ metadata.gz: 203d1b6888ea667b5f0cf661f7282239d1736f70547c734fb890e0f58ac43d429e4193bda6977a88ca880a2d7cfbd5c1989442f171e27aa6d583932d83898109
7
+ data.tar.gz: 2fbf1aaee7ba11983db23d163b57d32e2ba195fc2fa1dad71447becba40c3eafabb9a8834a2e5a12a24d42b46424cafc32837ad8c9157478734e1d17c8d9a98d
data/README.md CHANGED
@@ -62,6 +62,7 @@ All available config options are in: https://github.com/librariesio/bibliothecar
62
62
  - pom.xml
63
63
  - ivy.xml
64
64
  - build.gradle
65
+ - gradle-dependencies-q.txt
65
66
  - RubyGems
66
67
  - Gemfile
67
68
  - Gemfile.lock
@@ -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)
@@ -1,3 +1,3 @@
1
1
  module Bibliothecary
2
- VERSION = "7.3.4"
2
+ VERSION = "7.3.5"
3
3
  end
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
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: 2021-12-22 00:00:00.000000000 Z
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: []