Skip to content

Commit 01c35c1

Browse files
Updating copyright statements
1 parent 4c539a4 commit 01c35c1

5 files changed

Lines changed: 47 additions & 3 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright OWASP Foundation
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# CycloneDX Ruby Gem
1010

11-
The CycloneDX Ruby Gem creates a valid CycloneDX bill-of-material document from all project dependencies. CycloneDX is a lightweight BoM specification that is easily created, human readable, and simple to parse.
11+
The CycloneDX Ruby Gem creates a valid CycloneDX Software Bill of Materials (SBOM) from all project dependencies. CycloneDX is a lightweight SBOM specification that is easily created, human readable, and simple to parse.
1212

1313
#### Installing from RubyGems
1414

@@ -41,6 +41,8 @@ cyclonedx-ruby -p /path/to/ruby/project
4141
Copyright & License
4242
-------------------
4343

44+
CycloneDX Ruby Gem is Copyright (c) OWASP Foundation. All Rights Reserved.
45+
4446
Permission to modify and redistribute is granted under the terms of the Apache 2.0 license. See the [LICENSE] file for the full license.
4547

4648
[License]: https://github.com/CycloneDX/cyclonedx-ruby-gem/blob/master/LICENSE

cyclonedx-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Gem::Specification.new do |spec|
22
spec.name = "cyclonedx-ruby"
33
spec.version = "1.1.0"
44
spec.date = "2019-07-12"
5-
spec.summary = "CycloneDX software bill-of-material (SBoM) generation utility"
5+
spec.summary = "CycloneDX Software Bill of Material (SBOM) generation utility"
66
spec.description = "CycloneDX is a lightweight software bill-of-material (SBOM) specification designed for use in application security contexts and supply chain component analysis. This Gem generates CycloneDX BOMs from Ruby projects."
77
spec.authors = ["Joseph Kobti", "Steve Springett"]
88
spec.email = "josephkobti@outlook.com"

lib/bom_builder.rb

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# This file is part of CycloneDX Ruby Gem.
2+
#
3+
# Licensed to the Apache Software Foundation (ASF) under one
4+
# or more contributor license agreements. See the NOTICE file
5+
# distributed with this work for additional information
6+
# regarding copyright ownership. The ASF licenses this file
7+
# to you under the Apache License, Version 2.0 (the
8+
# "License"); you may not use this file except in compliance
9+
# with the License. You may obtain a copy of the License at
10+
#
11+
# http://www.apache.org/licenses/LICENSE-2.0
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
#
20+
# SPDX-License-Identifier: Apache-2.0
21+
# Copyright (c) OWASP Foundation. All Rights Reserved.
122
require "bundler"
223
require "fileutils"
324
require "json"

lib/bom_helpers.rb

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# This file is part of CycloneDX Ruby Gem.
2+
#
3+
# Licensed to the Apache Software Foundation (ASF) under one
4+
# or more contributor license agreements. See the NOTICE file
5+
# distributed with this work for additional information
6+
# regarding copyright ownership. The ASF licenses this file
7+
# to you under the Apache License, Version 2.0 (the
8+
# "License"); you may not use this file except in compliance
9+
# with the License. You may obtain a copy of the License at
10+
#
11+
# http://www.apache.org/licenses/LICENSE-2.0
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
#
20+
# SPDX-License-Identifier: Apache-2.0
21+
# Copyright (c) OWASP Foundation. All Rights Reserved.
122
def purl(name, version)
223
purl = "pkg:gem/" + name + "@" + version.to_s
324
end

0 commit comments

Comments
 (0)