purl 0.1.0 → 1.1.0
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 +43 -2
- data/CODE_OF_CONDUCT.md +1 -1
- data/CONTRIBUTING.md +167 -0
- data/LICENSE +21 -0
- data/README.md +409 -13
- data/Rakefile +538 -0
- data/SECURITY.md +164 -0
- data/lib/purl/errors.rb +64 -0
- data/lib/purl/package_url.rb +520 -0
- data/lib/purl/registry_url.rb +543 -0
- data/lib/purl/version.rb +1 -1
- data/lib/purl.rb +133 -1
- data/purl-types.json +583 -0
- data/schemas/purl-types.schema.json +154 -0
- data/schemas/test-suite-data.schema.json +134 -0
- data/test-suite-data.json +710 -0
- metadata +15 -2
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: purl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Nesbitt
|
|
@@ -9,6 +9,9 @@ bindir: exe
|
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies: []
|
|
12
|
+
description: |-
|
|
13
|
+
This library features comprehensive error handling with namespaced error types, bidirectional registry URL conversion, and JSON-based configuration for cross-language compatibility.
|
|
14
|
+
It supports 37 package types (32 official + 5 additional ecosystems) and is fully compliant with the official PURL specification test suite.
|
|
12
15
|
email:
|
|
13
16
|
- andrewnez@gmail.com
|
|
14
17
|
executables: []
|
|
@@ -17,11 +20,21 @@ extra_rdoc_files: []
|
|
|
17
20
|
files:
|
|
18
21
|
- CHANGELOG.md
|
|
19
22
|
- CODE_OF_CONDUCT.md
|
|
23
|
+
- CONTRIBUTING.md
|
|
24
|
+
- LICENSE
|
|
20
25
|
- README.md
|
|
21
26
|
- Rakefile
|
|
27
|
+
- SECURITY.md
|
|
22
28
|
- lib/purl.rb
|
|
29
|
+
- lib/purl/errors.rb
|
|
30
|
+
- lib/purl/package_url.rb
|
|
31
|
+
- lib/purl/registry_url.rb
|
|
23
32
|
- lib/purl/version.rb
|
|
33
|
+
- purl-types.json
|
|
34
|
+
- schemas/purl-types.schema.json
|
|
35
|
+
- schemas/test-suite-data.schema.json
|
|
24
36
|
- sig/purl.rbs
|
|
37
|
+
- test-suite-data.json
|
|
25
38
|
homepage: https://github.com/andrew/purl
|
|
26
39
|
licenses: []
|
|
27
40
|
metadata:
|
|
@@ -35,7 +48,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
35
48
|
requirements:
|
|
36
49
|
- - ">="
|
|
37
50
|
- !ruby/object:Gem::Version
|
|
38
|
-
version: 3.
|
|
51
|
+
version: 3.1.0
|
|
39
52
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
40
53
|
requirements:
|
|
41
54
|
- - ">="
|