sbom 0.4.0 → 0.5.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/.ruby-version +1 -1
- data/CHANGELOG.md +9 -0
- data/README.md +7 -0
- data/lib/sbom/cyclonedx/generator.rb +76 -0
- data/lib/sbom/version.rb +1 -1
- data/spec/cyclonedx/schema/bom-1.2-strict.schema.json +1029 -0
- data/spec/cyclonedx/schema/bom-1.2.schema.json +1001 -0
- data/spec/cyclonedx/schema/bom-1.3-strict.schema.json +1089 -0
- data/spec/cyclonedx/schema/bom-1.3.schema.json +1058 -0
- data/spec/cyclonedx/schema/bom-1.4.schema.json +1697 -0
- data/spec/cyclonedx/schema/bom-1.5.schema.json +3799 -0
- data/spec/cyclonedx/schema/bom-1.6.schema.json +5699 -0
- data/spec/cyclonedx/schema/bom-1.7.schema.json +6700 -0
- data/spec/spdx/schemas/spdx-schema.json +760 -0
- metadata +11 -2
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sbom
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Nesbitt
|
|
@@ -92,6 +92,15 @@ files:
|
|
|
92
92
|
- lib/sbom/validator.rb
|
|
93
93
|
- lib/sbom/version.rb
|
|
94
94
|
- sig/sbom.rbs
|
|
95
|
+
- spec/cyclonedx/schema/bom-1.2-strict.schema.json
|
|
96
|
+
- spec/cyclonedx/schema/bom-1.2.schema.json
|
|
97
|
+
- spec/cyclonedx/schema/bom-1.3-strict.schema.json
|
|
98
|
+
- spec/cyclonedx/schema/bom-1.3.schema.json
|
|
99
|
+
- spec/cyclonedx/schema/bom-1.4.schema.json
|
|
100
|
+
- spec/cyclonedx/schema/bom-1.5.schema.json
|
|
101
|
+
- spec/cyclonedx/schema/bom-1.6.schema.json
|
|
102
|
+
- spec/cyclonedx/schema/bom-1.7.schema.json
|
|
103
|
+
- spec/spdx/schemas/spdx-schema.json
|
|
95
104
|
homepage: https://github.com/andrew/sbom
|
|
96
105
|
licenses:
|
|
97
106
|
- MIT
|
|
@@ -114,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
114
123
|
- !ruby/object:Gem::Version
|
|
115
124
|
version: '0'
|
|
116
125
|
requirements: []
|
|
117
|
-
rubygems_version: 4.0.
|
|
126
|
+
rubygems_version: 4.0.12
|
|
118
127
|
specification_version: 4
|
|
119
128
|
summary: Parse, generate, and validate Software Bill of Materials (SBOM)
|
|
120
129
|
test_files: []
|