licensed 5.0.2 → 5.0.4
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/Brewfile +3 -0
- data/CHANGELOG.md +2 -884
- data/Gemfile.lock +57 -46
- data/lib/licensed/configuration.rb +1 -1
- data/lib/licensed/git.rb +36 -38
- data/lib/licensed/shell.rb +1 -1
- data/lib/licensed/sources/gradle.rb +3 -5
- data/lib/licensed/sources/nuget.rb +42 -44
- data/lib/licensed/sources/pip.rb +9 -7
- data/lib/licensed/sources/pnpm.rb +18 -13
- data/lib/licensed/sources/source.rb +45 -39
- data/lib/licensed/version.rb +1 -1
- data/licensed.gemspec +2 -2
- metadata +7 -6
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: licensed
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GitHub
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: csv
|
@@ -218,14 +218,14 @@ dependencies:
|
|
218
218
|
requirements:
|
219
219
|
- - "~>"
|
220
220
|
- !ruby/object:Gem::Version
|
221
|
-
version: '
|
221
|
+
version: '12.0'
|
222
222
|
type: :development
|
223
223
|
prerelease: false
|
224
224
|
version_requirements: !ruby/object:Gem::Requirement
|
225
225
|
requirements:
|
226
226
|
- - "~>"
|
227
227
|
- !ruby/object:Gem::Version
|
228
|
-
version: '
|
228
|
+
version: '12.0'
|
229
229
|
description: Licensed automates extracting and validating the licenses of dependencies.
|
230
230
|
email:
|
231
231
|
- opensource+licensed@github.com
|
@@ -234,6 +234,7 @@ executables:
|
|
234
234
|
extensions: []
|
235
235
|
extra_rdoc_files: []
|
236
236
|
files:
|
237
|
+
- Brewfile
|
237
238
|
- CHANGELOG.md
|
238
239
|
- CODE_OF_CONDUCT.md
|
239
240
|
- CONTRIBUTING.md
|
@@ -355,14 +356,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
355
356
|
requirements:
|
356
357
|
- - ">="
|
357
358
|
- !ruby/object:Gem::Version
|
358
|
-
version: 3.
|
359
|
+
version: 3.1.0
|
359
360
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
360
361
|
requirements:
|
361
362
|
- - ">="
|
362
363
|
- !ruby/object:Gem::Version
|
363
364
|
version: '0'
|
364
365
|
requirements: []
|
365
|
-
rubygems_version: 3.3.
|
366
|
+
rubygems_version: 3.3.27
|
366
367
|
signing_key:
|
367
368
|
specification_version: 4
|
368
369
|
summary: Extract and validate the licenses of dependencies.
|